forked from mirrors/nixpkgs
gnu-shepherd: init at 0.8.1
This commit is contained in:
parent
5c60dc1f26
commit
ed8962a614
26
pkgs/misc/gnu-shepherd/default.nix
Normal file
26
pkgs/misc/gnu-shepherd/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{ stdenv, lib, fetchurl, guile, pkg-config }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "gnu-shepherd";
|
||||
version = "0.8.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://ftp.gnu.org/gnu/shepherd/shepherd-${version}.tar.gz";
|
||||
sha256 = "sha256-0y/lhpS7U1C1/HKFzwyg2cfSQiGqWWnWxGTuPjrIP3U=";
|
||||
};
|
||||
|
||||
configureFlags = [
|
||||
"--localstatedir=/"
|
||||
];
|
||||
|
||||
buildInputs = [ guile ];
|
||||
nativeBuildInputs = [ pkg-config guile ];
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
|
@ -5927,6 +5927,8 @@ with pkgs;
|
|||
|
||||
gnuapl = callPackage ../development/interpreters/gnu-apl { };
|
||||
|
||||
gnu-shepherd = callPackage ../misc/gnu-shepherd { };
|
||||
|
||||
dapl = callPackage ../development/interpreters/dzaima-apl {
|
||||
buildNativeImage = false;
|
||||
stdenv = stdenvNoCC;
|
||||
|
|
Loading…
Reference in a new issue