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
|
|
|
|
2023-05-30 23:57:00 +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
|
|
|
|
];
|
|
|
|
|
2023-08-07 16:12:52 +00:00
|
|
|
dontUseCargoParallelTests = true;
|
|
|
|
|
2022-06-09 14:12:42 +00:00
|
|
|
checkFlags = [
|
2023-08-07 16:12:52 +00:00
|
|
|
# requires internet access
|
2023-05-30 23:57:00 +00:00
|
|
|
"--skip=paste::tests::test_paste_data"
|
|
|
|
"--skip=server::tests::test_upload_remote_file"
|
2022-06-09 14:12:42 +00:00
|
|
|
];
|
|
|
|
|
2023-07-01 13:04:59 +00:00
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
|
2022-06-09 14:12:42 +00:00
|
|
|
meta = with lib; {
|
2024-06-07 07:46:46 +00:00
|
|
|
description = "Minimal file upload/pastebin service";
|
2022-06-09 14:12:42 +00:00
|
|
|
homepage = "https://github.com/orhun/rustypaste";
|
|
|
|
changelog = "https://github.com/orhun/rustypaste/blob/v${version}/CHANGELOG.md";
|
|
|
|
license = licenses.mit;
|
2023-06-05 22:01:42 +00:00
|
|
|
maintainers = with maintainers; [ figsoda seqizz ];
|
2023-11-23 21:09:35 +00:00
|
|
|
mainProgram = "rustypaste";
|
2022-06-09 14:12:42 +00:00
|
|
|
};
|
|
|
|
}
|