1
0
Fork 1
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:
Patrick Nuckolls 2023-01-08 14:54:49 -08:00 committed by GitHub
parent 16212c03f5
commit b5e025bb2a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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/";