mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
755b915a15
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/'
41 lines
1.1 KiB
Nix
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";
|
|
};
|
|
}
|