nixpkgs/pkgs/tools/system/jobber/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

41 lines
1.1 KiB
Nix

{ 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 = "Alternative to cron, with sophisticated status-reporting and error-handling";
license = licenses.mit;
maintainers = with maintainers; [ urandom ];
mainProgram = "jobber";
};
}