mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 22:03:54 +03:00
Merge pull request #87330 from marsam/update-pueue
This commit is contained in:
commit
b36f774f1a
@ -1,19 +1,29 @@
|
|||||||
{ lib, rustPlatform, fetchFromGitHub }:
|
{ lib, rustPlatform, fetchFromGitHub, installShellFiles }:
|
||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "pueue";
|
pname = "pueue";
|
||||||
version = "0.3.1";
|
version = "0.4.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "Nukesor";
|
owner = "Nukesor";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "1v3fphx71hyv7fq09slhyzchw362swzhmhn7wmbazfdrj6fjhcki";
|
sha256 = "050cx9ncs1hfb14llly0wm3h5s4377s3sinmkjc52xm2z2gc7m5f";
|
||||||
};
|
};
|
||||||
|
|
||||||
cargoSha256 = "04vi9la17pabz1spfw1fzgy4c2ifnis6am5m4ck3lhccnn6j8bd3";
|
cargoSha256 = "1hw0y6c1ypp470cca3yw6fc7xvligy3av8hsa9bhdm5can46hyzi";
|
||||||
|
|
||||||
checkPhase = "cargo test -- --skip test_single_huge_payload";
|
nativeBuildInputs = [ installShellFiles ];
|
||||||
|
|
||||||
|
checkFlagsArray = [ "--skip=test_single_huge_payload" ];
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
# zsh completion generation fails. See: https://github.com/Nukesor/pueue/issues/57
|
||||||
|
for shell in bash fish; do
|
||||||
|
$out/bin/pueue completions $shell .
|
||||||
|
installShellCompletion pueue.$shell
|
||||||
|
done
|
||||||
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "A daemon for managing long running shell commands";
|
description = "A daemon for managing long running shell commands";
|
||||||
|
Loading…
Reference in New Issue
Block a user