nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

gnu-shepherd: 0.8.1 -> 0.9.3 (#206317)

authored by

Patrick Nuckolls and committed by
GitHub
b5e025bb 16212c03

+7 -9
+7 -9
pkgs/misc/gnu-shepherd/default.nix
··· 1 - { stdenv, lib, fetchurl, guile, pkg-config }: 1 + { stdenv, lib, fetchurl, guile, pkg-config, guile-fibers }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "gnu-shepherd"; 5 - version = "0.8.1"; 5 + version = "0.9.3"; 6 6 7 7 src = fetchurl { 8 - url = "https://ftp.gnu.org/gnu/shepherd/shepherd-${version}.tar.gz"; 9 - sha256 = "sha256-0y/lhpS7U1C1/HKFzwyg2cfSQiGqWWnWxGTuPjrIP3U="; 8 + url = "mirror://gnu/shepherd/shepherd-${version}.tar.gz"; 9 + sha256 = "0qy2yq13xhf05an5ilz7grighdxicx56211yaarqq5qigiiybc32"; 10 10 }; 11 11 12 - configureFlags = [ 13 - "--localstatedir=/" 14 - ]; 12 + configureFlags = [ "--localstatedir=/" ]; 15 13 16 - buildInputs = [ guile ]; 17 - nativeBuildInputs = [ pkg-config guile ]; 14 + buildInputs = [ guile guile-fibers ]; 15 + nativeBuildInputs = [ pkg-config ]; 18 16 19 17 meta = with lib; { 20 18 homepage = "https://www.gnu.org/software/shepherd/";