nixpkgs/pkgs/servers/rustypaste/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
1.0 KiB
Nix
Raw Normal View History

2023-03-21 05:15:37 +00:00
{ lib, rustPlatform, fetchFromGitHub, stdenv, darwin }:
2022-06-09 14:12:42 +00:00
rustPlatform.buildRustPackage rec {
pname = "rustypaste";
2024-04-04 23:11:13 +00:00
version = "0.15.0";
2022-06-09 14:12:42 +00:00
src = fetchFromGitHub {
2022-06-09 14:12:42 +00:00
owner = "orhun";
repo = pname;
rev = "v${version}";
2024-04-04 23:11:13 +00:00
sha256 = "sha256-mDNWIqA3t8AGNTqryiH2q8Tvg4k5d0II3EBkf7tdoNo=";
2022-06-09 14:12:42 +00:00
};
2024-04-04 23:11:13 +00:00
cargoHash = "sha256-ZmlA6O/9ZVLHvBHMkY+hpb6Eb0o0RxfXpwop6BLCdWc=";
2022-06-09 14:12:42 +00:00
2023-03-21 05:15:37 +00:00
buildInputs = lib.optionals stdenv.isDarwin [
darwin.apple_sdk.frameworks.CoreServices
];
dontUseCargoParallelTests = true;
2022-06-09 14:12:42 +00:00
checkFlags = [
# requires internet access
"--skip=paste::tests::test_paste_data"
"--skip=server::tests::test_upload_remote_file"
2022-06-09 14:12:42 +00:00
];
__darwinAllowLocalNetworking = true;
2022-06-09 14:12:42 +00:00
meta = with lib; {
description = "A minimal file upload/pastebin service";
homepage = "https://github.com/orhun/rustypaste";
changelog = "https://github.com/orhun/rustypaste/blob/v${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ figsoda seqizz ];
2023-11-23 21:09:35 +00:00
mainProgram = "rustypaste";
2022-06-09 14:12:42 +00:00
};
}