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-09-05 19:57:16 +02:00
|
|
|
version = "0.14.0";
|
2022-06-09 16:12:42 +02:00
|
|
|
|
2023-05-31 01:57:00 +02:00
|
|
|
src = fetchFromGitHub {
|
2022-06-09 16:12:42 +02:00
|
|
|
owner = "orhun";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2023-09-05 19:57:16 +02:00
|
|
|
sha256 = "sha256-bVy3/Ot4cb2Tr+wEDtWD3W2FYlXQVQ6tYC8DDyCiivY=";
|
2022-06-09 16:12:42 +02:00
|
|
|
};
|
|
|
|
|
2023-09-05 19:57:16 +02:00
|
|
|
cargoHash = "sha256-lCpp1VM6G36mFCm3u+4trsdFszd8SbUEgK1iIm/LwQ4=";
|
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
|
|
|
|
];
|
|
|
|
|
2023-08-07 18:12:52 +02:00
|
|
|
dontUseCargoParallelTests = true;
|
|
|
|
|
2022-06-09 16:12:42 +02:00
|
|
|
checkFlags = [
|
2023-08-07 18:12:52 +02:00
|
|
|
# requires internet access
|
2023-05-31 01:57:00 +02:00
|
|
|
"--skip=paste::tests::test_paste_data"
|
|
|
|
"--skip=server::tests::test_upload_remote_file"
|
2022-06-09 16:12:42 +02:00
|
|
|
];
|
|
|
|
|
2023-07-01 15:04:59 +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;
|
2023-06-06 00:01:42 +02:00
|
|
|
maintainers = with maintainers; [ figsoda seqizz ];
|
2022-06-09 16:12:42 +02:00
|
|
|
};
|
|
|
|
}
|