mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
rustypaste: init at 0.7.1
This commit is contained in:
parent
1191f8391f
commit
2b42b1adbb
31
pkgs/servers/rustypaste/default.nix
Normal file
31
pkgs/servers/rustypaste/default.nix
Normal file
@ -0,0 +1,31 @@
|
||||
{ lib, rustPlatform, fetchFromGitHub }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "rustypaste";
|
||||
version = "0.7.1";
|
||||
|
||||
src = fetchFromGitHub{
|
||||
owner = "orhun";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-NGrz08cpio745oVYtfNO1jpViYLaxZ9ZRXQdQG/f0oM=";
|
||||
};
|
||||
|
||||
cargoSha256 = "sha256-UQNe2O664PXvcSu6MI5F8RdYJJholjF9iO2I5OSMm2A=";
|
||||
|
||||
# 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 ];
|
||||
};
|
||||
}
|
@ -10039,6 +10039,8 @@ with pkgs;
|
||||
inherit (darwin.apple_sdk.frameworks) Security;
|
||||
};
|
||||
|
||||
rustypaste = callPackage ../servers/rustypaste { };
|
||||
|
||||
rw = callPackage ../tools/misc/rw { };
|
||||
|
||||
rwc = callPackage ../tools/system/rwc { };
|
||||
|
Loading…
Reference in New Issue
Block a user