nixpkgs/pkgs/development/libraries/libpipeline/default.nix
2018-03-25 18:03:23 -05:00

20 lines
555 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "libpipeline-1.5.0";
src = fetchurl {
url = "mirror://savannah/libpipeline/${name}.tar.gz";
sha256 = "0avg525wvifcvjrwa6i1r6kvahmsswj0mpxrsxzzdzra9wpf2whd";
};
patches = stdenv.lib.optionals stdenv.isDarwin [ ./fix-on-osx.patch ];
meta = with stdenv.lib; {
homepage = http://libpipeline.nongnu.org;
description = "C library for manipulating pipelines of subprocesses in a flexible and convenient way";
platforms = platforms.unix;
license = licenses.gpl3;
};
}