94427deb9d
GitOrigin-RevId: f91ee3065de91a3531329a674a45ddcb3467a650
35 lines
1,014 B
Nix
35 lines
1,014 B
Nix
{ lib, rustPlatform, fetchFromGitHub, stdenv, darwin }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "rustypaste";
|
|
version = "0.9.0";
|
|
|
|
src = fetchFromGitHub{
|
|
owner = "orhun";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-s0IpyybF0haTQu30QBaPDmCSFivpMeESt9S6a6NWfTM=";
|
|
};
|
|
|
|
cargoHash = "sha256-87JxmZsjXZ7kf4LHgqrgrWbQtVj/XdZrf0G/6wP/ip8=";
|
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [
|
|
darwin.apple_sdk.frameworks.CoreServices
|
|
];
|
|
|
|
# Some tests need network
|
|
checkFlags = [
|
|
"--skip paste::tests::test_paste_data"
|
|
"--skip server::tests::test_upload_file"
|
|
"--skip server::tests::test_upload_remote_file"
|
|
"--skip util::tests::test_get_expired_files"
|
|
];
|
|
|
|
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; [ seqizz ];
|
|
};
|
|
}
|