2023-03-24 00:07:29 +00:00
|
|
|
{ lib, rustPlatform, fetchFromGitHub, stdenv, darwin }:
|
2022-08-21 13:32:41 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "rustypaste";
|
2024-07-31 10:19:44 +00:00
|
|
|
version = "0.15.1";
|
2022-08-21 13:32:41 +00:00
|
|
|
|
2023-07-15 17:15:38 +00:00
|
|
|
src = fetchFromGitHub {
|
2022-08-21 13:32:41 +00:00
|
|
|
owner = "orhun";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2024-07-31 10:19:44 +00:00
|
|
|
sha256 = "sha256-C/ndU09+yQTXEUWDO3u9Bl5M3x3aaRHVuWpomUAa/B8=";
|
2022-08-21 13:32:41 +00:00
|
|
|
};
|
|
|
|
|
2024-07-31 10:19:44 +00:00
|
|
|
cargoHash = "sha256-b9KZzevaTl52pduN4gkF8k6yqgDcE8x5sOwmPxzYfWA=";
|
2022-08-21 13:32:41 +00:00
|
|
|
|
2024-09-26 11:04:55 +00:00
|
|
|
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [
|
2023-03-24 00:07:29 +00:00
|
|
|
darwin.apple_sdk.frameworks.CoreServices
|
|
|
|
];
|
|
|
|
|
2023-08-10 07:59:29 +00:00
|
|
|
dontUseCargoParallelTests = true;
|
|
|
|
|
2022-08-21 13:32:41 +00:00
|
|
|
checkFlags = [
|
2023-08-10 07:59:29 +00:00
|
|
|
# requires internet access
|
2023-07-15 17:15:38 +00:00
|
|
|
"--skip=paste::tests::test_paste_data"
|
|
|
|
"--skip=server::tests::test_upload_remote_file"
|
2022-08-21 13:32:41 +00:00
|
|
|
];
|
|
|
|
|
2023-07-15 17:15:38 +00:00
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
|
2022-08-21 13:32:41 +00:00
|
|
|
meta = with lib; {
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Minimal file upload/pastebin service";
|
2022-08-21 13:32:41 +00:00
|
|
|
homepage = "https://github.com/orhun/rustypaste";
|
|
|
|
changelog = "https://github.com/orhun/rustypaste/blob/v${version}/CHANGELOG.md";
|
|
|
|
license = licenses.mit;
|
2023-07-15 17:15:38 +00:00
|
|
|
maintainers = with maintainers; [ figsoda seqizz ];
|
2024-01-02 11:29:13 +00:00
|
|
|
mainProgram = "rustypaste";
|
2022-08-21 13:32:41 +00:00
|
|
|
};
|
|
|
|
}
|