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 KiB
Nix
Raw Normal View History

2023-03-21 06:15:37 +01:00
{ lib, rustPlatform, fetchFromGitHub, stdenv, darwin }:
2022-06-09 16:12:42 +02:00
rustPlatform.buildRustPackage rec {
pname = "rustypaste";
2023-12-06 17:22:47 +01:00
version = "0.14.2";
2022-06-09 16:12:42 +02:00
src = fetchFromGitHub {
2022-06-09 16:12:42 +02:00
owner = "orhun";
repo = pname;
rev = "v${version}";
2023-12-06 17:22:47 +01:00
sha256 = "sha256-3DH19lLOoNwokHmANKVbYgMBlp1HXxcSK2Cun8KV3b8=";
2022-06-09 16:12:42 +02:00
};
2023-12-06 17:22:47 +01:00
cargoHash = "sha256-Ybqe3CMqZi127aXwRrdo2Of3n+pPGfnTqFPlM7Nr2rI=";
2022-06-09 16:12:42 +02:00
2023-03-21 06:15:37 +01:00
buildInputs = lib.optionals stdenv.isDarwin [
darwin.apple_sdk.frameworks.CoreServices
];
dontUseCargoParallelTests = true;
2022-06-09 16:12:42 +02:00
checkFlags = [
# requires internet access
"--skip=paste::tests::test_paste_data"
"--skip=server::tests::test_upload_remote_file"
2022-06-09 16:12:42 +02:00
];
__darwinAllowLocalNetworking = true;
2022-06-09 16:12:42 +02: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 22:09:35 +01:00
mainProgram = "rustypaste";
2022-06-09 16:12:42 +02:00
};
}