dput-ng: fix eval (#364540)
[NixPkgs.git] / pkgs / by-name / gn / gnu-shepherd / package.nix
blob66f47a8f6ffbdf2f7c06824b20363aac78031a31
1 { stdenv, lib, fetchurl, guile, pkg-config, guile-fibers }:
3 stdenv.mkDerivation rec {
4   pname = "gnu-shepherd";
5   version = "0.9.3";
7   src = fetchurl {
8     url = "mirror://gnu/shepherd/shepherd-${version}.tar.gz";
9     sha256 = "0qy2yq13xhf05an5ilz7grighdxicx56211yaarqq5qigiiybc32";
10   };
12   configureFlags = [ "--localstatedir=/" ];
14   buildInputs = [ guile guile-fibers ];
15   nativeBuildInputs = [ pkg-config ];
17   meta = with lib; {
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 ];
23   };