Merge pull request #203894 from urandom2/jobber
Fixes https://github.com/NixOS/nixpkgs/issues/126268
This commit is contained in:
commit
96b8fab0e5
2 changed files with 42 additions and 0 deletions
40
pkgs/tools/system/jobber/default.nix
Normal file
40
pkgs/tools/system/jobber/default.nix
Normal file
|
@ -0,0 +1,40 @@
|
|||
{ lib, buildGoModule, fetchFromGitHub, gotools }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "jobber";
|
||||
version = "1.4.4";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "dshearer";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
hash = "sha256-mLYyrscvT/VK9ehwkPUq4RbwHb+6Wjvt7ZXk/fI0HT4=";
|
||||
};
|
||||
|
||||
vendorHash = null;
|
||||
|
||||
nativeBuildInputs = [ gotools ];
|
||||
|
||||
postConfigure = "go generate ./...";
|
||||
|
||||
ldflags = [
|
||||
"-s"
|
||||
"-w"
|
||||
"-X github.com/dshearer/jobber/common.jobberVersion=${version}"
|
||||
"-X github.com/dshearer/jobber/common.etcDirPath=${placeholder "out"}/etc"
|
||||
];
|
||||
|
||||
postInstall = ''
|
||||
mkdir -p $out/etc $out/libexec
|
||||
$out/bin/jobbermaster defprefs --libexec $out/libexec > $out/etc/jobber.conf
|
||||
mv $out/bin/jobber{master,runner} $out/libexec/
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://dshearer.github.io/jobber";
|
||||
changelog = "https://github.com/dshearer/jobber/releases/tag/v${version}";
|
||||
description = "An alternative to cron, with sophisticated status-reporting and error-handling";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ urandom ];
|
||||
};
|
||||
}
|
|
@ -1395,6 +1395,8 @@ with pkgs;
|
|||
|
||||
httm = callPackage ../tools/filesystems/httm { };
|
||||
|
||||
jobber = callPackage ../tools/system/jobber {};
|
||||
|
||||
kanata = callPackage ../tools/system/kanata { };
|
||||
|
||||
kanata-with-cmd = kanata.override { withCmd = true; };
|
||||
|
|
Loading…
Reference in a new issue