Unverified Commit b5e025bb authored by Patrick Nuckolls's avatar Patrick Nuckolls Committed by GitHub
Browse files

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

parent 16212c03
Loading
Loading
Loading
Loading
+7 −9
Original line number Diff line number Diff line
{ 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/";