1 { stdenv, lib, fetchurl, guile, pkg-config, guile-fibers }:
3 stdenv.mkDerivation rec {
4 pname = "gnu-shepherd";
8 url = "mirror://gnu/shepherd/shepherd-${version}.tar.gz";
9 sha256 = "0qy2yq13xhf05an5ilz7grighdxicx56211yaarqq5qigiiybc32";
12 configureFlags = [ "--localstatedir=/" ];
14 buildInputs = [ guile guile-fibers ];
15 nativeBuildInputs = [ pkg-config ];
18 homepage = "https://www.gnu.org/software/shepherd/";
19 description = "Service manager that looks after the herd of system services";
20 license = with licenses; [ gpl3Plus ];
21 platforms = platforms.unix;
22 maintainers = with maintainers; [ kloenk ];