jobber: init at 1.4.4

Fixes #126268
This commit is contained in:
Colin Arnott 2022-12-01 09:18:30 +00:00
parent 88ae5d0825
commit 97e2e764e6
No known key found for this signature in database
GPG key ID: 0447A663F7F3E236
2 changed files with 42 additions and 0 deletions

View 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 ];
};
}

View file

@ -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; };