python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / misc / gnu-shepherd / default.nix
blobe55b9d1576e75e08a1d3dfc17dd47f1c971e069d
1 { stdenv, lib, fetchurl, guile, pkg-config }:
3 stdenv.mkDerivation rec {
4   pname = "gnu-shepherd";
5   version = "0.8.1";
7   src = fetchurl {
8     url = "https://ftp.gnu.org/gnu/shepherd/shepherd-${version}.tar.gz";
9     sha256 = "sha256-0y/lhpS7U1C1/HKFzwyg2cfSQiGqWWnWxGTuPjrIP3U=";
10   };
12   configureFlags = [
13     "--localstatedir=/"
14   ];
16   buildInputs = [ guile ];
17   nativeBuildInputs = [ pkg-config guile ];
19   meta = with lib; {
20     homepage = "https://www.gnu.org/software/shepherd/";
21     description = "Service manager that looks after the herd of system services";
22     license = with licenses; [ gpl3Plus ];
23     platforms = platforms.unix;
24     maintainers = with maintainers; [ kloenk ];
25   };