Merge pull request #294017 from fgaz/job-security/init
This commit is contained in:
commit
2230a20f2b
1 changed files with 28 additions and 0 deletions
28
pkgs/by-name/jo/job-security/package.nix
Normal file
28
pkgs/by-name/jo/job-security/package.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, rustPlatform
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "job-security";
|
||||
version = "unstable-0-2024-03-24";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "yshui";
|
||||
repo = "job-security";
|
||||
rev = "3881a4a0e66afe19cbdba3f43d0f85732796f977";
|
||||
hash = "sha256-mXmDzBsHdiim0bWrs0SvgtMZmKnYVz/RV9LNqPHHlnk=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-W5evL36ByUUjvSwa3Nmf4MT2oZYoQ8kmchNOxUwmpuE=";
|
||||
|
||||
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.isDarwin;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue