nixpkgs/pkgs/misc/gnu-shepherd/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
705 B
Nix
Raw Normal View History

2023-01-08 22:54:49 +00:00
{ stdenv, lib, fetchurl, guile, pkg-config, guile-fibers }:
2021-12-31 18:01:44 +00:00
stdenv.mkDerivation rec {
pname = "gnu-shepherd";
2023-01-08 22:54:49 +00:00
version = "0.9.3";
2021-12-31 18:01:44 +00:00
src = fetchurl {
2023-01-08 22:54:49 +00:00
url = "mirror://gnu/shepherd/shepherd-${version}.tar.gz";
sha256 = "0qy2yq13xhf05an5ilz7grighdxicx56211yaarqq5qigiiybc32";
2021-12-31 18:01:44 +00:00
};
2023-01-08 22:54:49 +00:00
configureFlags = [ "--localstatedir=/" ];
2021-12-31 18:01:44 +00:00
2023-01-08 22:54:49 +00:00
buildInputs = [ guile guile-fibers ];
nativeBuildInputs = [ pkg-config ];
2021-12-31 18:01:44 +00:00
meta = with lib; {
homepage = "https://www.gnu.org/software/shepherd/";
description = "Service manager that looks after the herd of system services";
license = with licenses; [ gpl3Plus ];
platforms = platforms.unix;
maintainers = with maintainers; [ kloenk ];
};
}