3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/misc/pueue/default.nix

25 lines
643 B
Nix
Raw Normal View History

2020-03-25 23:00:00 +00:00
{ lib, rustPlatform, fetchFromGitHub }:
2020-02-02 09:20:00 +00:00
rustPlatform.buildRustPackage rec {
pname = "pueue";
2020-03-25 23:00:00 +00:00
version = "0.2.1";
2020-02-02 09:20:00 +00:00
src = fetchFromGitHub {
owner = "Nukesor";
repo = pname;
rev = "v${version}";
2020-03-25 23:00:00 +00:00
sha256 = "1yx69pwdal0p5dfhabjdns9z6z3fa41wh7bxa4dpsjx37ziglcsp";
2020-02-02 09:20:00 +00:00
};
2020-03-25 23:00:00 +00:00
cargoSha256 = "1ksr5fw9p3j1bnlgfimb5nsryb4si8ic2x4prsra1mwkc91hr7x3";
2020-02-02 09:20:00 +00:00
2020-03-25 23:00:00 +00:00
checkPhase = "cargo test -- --skip test_single_huge_payload";
2020-02-02 09:20:00 +00:00
meta = with lib; {
description = "A daemon for managing long running shell commands";
homepage = "https://github.com/Nukesor/pueue";
license = licenses.mit;
maintainers = [ maintainers.marsam ];
};
}