depot/third_party/nixpkgs/pkgs/misc/gnu-shepherd/default.nix
Default email 6d4aeb4377 Project import generated by Copybara.
GitOrigin-RevId: 0f213d0fee84280d8c3a97f7469b988d6fe5fcdf
2023-01-11 08:51:40 +01:00

24 lines
705 B
Nix

{ stdenv, lib, fetchurl, guile, pkg-config, guile-fibers }:
stdenv.mkDerivation rec {
pname = "gnu-shepherd";
version = "0.9.3";
src = fetchurl {
url = "mirror://gnu/shepherd/shepherd-${version}.tar.gz";
sha256 = "0qy2yq13xhf05an5ilz7grighdxicx56211yaarqq5qigiiybc32";
};
configureFlags = [ "--localstatedir=/" ];
buildInputs = [ guile guile-fibers ];
nativeBuildInputs = [ pkg-config ];
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 ];
};
}