tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
gnu-shepherd: init at 0.8.1
Finn Behrens
4 years ago
ed8962a6
5c60dc1f
+28
2 changed files
expand all
collapse all
unified
split
pkgs
misc
gnu-shepherd
default.nix
top-level
all-packages.nix
+26
pkgs/misc/gnu-shepherd/default.nix
···
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
···
1
+
{ stdenv, lib, fetchurl, guile, pkg-config }:
2
+
3
+
stdenv.mkDerivation rec {
4
+
pname = "gnu-shepherd";
5
+
version = "0.8.1";
6
+
7
+
src = fetchurl {
8
+
url = "https://ftp.gnu.org/gnu/shepherd/shepherd-${version}.tar.gz";
9
+
sha256 = "sha256-0y/lhpS7U1C1/HKFzwyg2cfSQiGqWWnWxGTuPjrIP3U=";
10
+
};
11
+
12
+
configureFlags = [
13
+
"--localstatedir=/"
14
+
];
15
+
16
+
buildInputs = [ guile ];
17
+
nativeBuildInputs = [ pkg-config guile ];
18
+
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
+
};
26
+
}
+2
pkgs/top-level/all-packages.nix
···
5927
5928
gnuapl = callPackage ../development/interpreters/gnu-apl { };
5929
0
0
5930
dapl = callPackage ../development/interpreters/dzaima-apl {
5931
buildNativeImage = false;
5932
stdenv = stdenvNoCC;
···
5927
5928
gnuapl = callPackage ../development/interpreters/gnu-apl { };
5929
5930
+
gnu-shepherd = callPackage ../misc/gnu-shepherd { };
5931
+
5932
dapl = callPackage ../development/interpreters/dzaima-apl {
5933
buildNativeImage = false;
5934
stdenv = stdenvNoCC;