mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
28 lines
703 B
Nix
28 lines
703 B
Nix
{ lib
|
|
, stdenv
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "job-security";
|
|
version = "0-unstable-2024-04-07";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "yshui";
|
|
repo = "job-security";
|
|
rev = "9b621cb0be437c709e398d31934b864a09d2a1d5";
|
|
hash = "sha256-KPnLVKz10SuVcG0CCFWxWnjhf9gHHPCRZw6AW9/gAmk=";
|
|
};
|
|
|
|
cargoHash = "sha256-YwlI+Z3Zry3i3amz3DufvKzSS1Hrp2kPG76aH5tMJ2g=";
|
|
|
|
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;
|
|
};
|
|
}
|