about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2024-03-27 10:47:59 +0100
committerGitHub <noreply@github.com>2024-03-27 10:47:59 +0100
commit2230a20f2b5a14f2db3d7f13a2dc3c22517e790b (patch)
treed68b6f023a482e13e75d07d7b9fd29f704b7caf2 /pkgs
parentdbcc57427dbe755759fdce02520b1da42cf1c5a2 (diff)
parentc2006be9a7b1f062193d4b348e0a380440410b46 (diff)
Merge pull request #294017 from fgaz/job-security/init
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/by-name/jo/job-security/package.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/by-name/jo/job-security/package.nix b/pkgs/by-name/jo/job-security/package.nix
new file mode 100644
index 0000000000000..4962b83aa79c4
--- /dev/null
+++ b/pkgs/by-name/jo/job-security/package.nix
@@ -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;
+  };
+}