nixpkgs/pkgs/servers/rustypaste/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
901 B
Nix
Raw Normal View History

2022-06-09 14:12:42 +00:00
{ lib, rustPlatform, fetchFromGitHub }:
rustPlatform.buildRustPackage rec {
pname = "rustypaste";
2022-10-05 22:11:57 +00:00
version = "0.8.2";
2022-06-09 14:12:42 +00:00
src = fetchFromGitHub{
owner = "orhun";
repo = pname;
rev = "v${version}";
2022-10-05 22:11:57 +00:00
sha256 = "sha256-EKW/Cik4La66bI7EVbFnhivk1o0nIudJdBW7F5dbQaI=";
2022-06-09 14:12:42 +00:00
};
2022-10-05 22:11:57 +00:00
cargoSha256 = "sha256-zIrvBHPthPAzReojmBLb0odDQGcGwZS10rP15qb/zgs=";
2022-06-09 14:12:42 +00:00
# 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 ];
};
}