Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
34 lines
740 B
Nix
34 lines
740 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage {
|
|
pname = "job-security";
|
|
version = "0-unstable-2024-04-07";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "yshui";
|
|
repo = "job-security";
|
|
rev = "9b621cb0be437c709e398d31934b864a09d2a1d5";
|
|
hash = "sha256-KPnLVKz10SuVcG0CCFWxWnjhf9gHHPCRZw6AW9/gAmk=";
|
|
};
|
|
|
|
cargoHash = "sha256-g+n0C8tkEuixbRo48cMOYPXcYt+Ur1TP6fFTYlI4fVg=";
|
|
|
|
meta = {
|
|
description = "Job control from anywhere";
|
|
homepage = "https://github.com/yshui/job-security";
|
|
license = with lib.licenses; [
|
|
asl20
|
|
mit
|
|
mpl20
|
|
];
|
|
maintainers = with lib.maintainers; [ fgaz ];
|
|
mainProgram = "jobs";
|
|
broken = stdenv.hostPlatform.isDarwin;
|
|
};
|
|
}
|