mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 03:30:45 +00:00
gnu-shepherd: 0.8.1 -> 0.9.3 (#206317)
This commit is contained in:
parent
16212c03f5
commit
b5e025bb2a
|
@ -1,20 +1,18 @@
|
|||
{ stdenv, lib, fetchurl, guile, pkg-config }:
|
||||
{ stdenv, lib, fetchurl, guile, pkg-config, guile-fibers }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "gnu-shepherd";
|
||||
version = "0.8.1";
|
||||
version = "0.9.3";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://ftp.gnu.org/gnu/shepherd/shepherd-${version}.tar.gz";
|
||||
sha256 = "sha256-0y/lhpS7U1C1/HKFzwyg2cfSQiGqWWnWxGTuPjrIP3U=";
|
||||
url = "mirror://gnu/shepherd/shepherd-${version}.tar.gz";
|
||||
sha256 = "0qy2yq13xhf05an5ilz7grighdxicx56211yaarqq5qigiiybc32";
|
||||
};
|
||||
|
||||
configureFlags = [
|
||||
"--localstatedir=/"
|
||||
];
|
||||
configureFlags = [ "--localstatedir=/" ];
|
||||
|
||||
buildInputs = [ guile ];
|
||||
nativeBuildInputs = [ pkg-config guile ];
|
||||
buildInputs = [ guile guile-fibers ];
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://www.gnu.org/software/shepherd/";
|
||||
|
|
Loading…
Reference in a new issue