2014-02-04 23:33:54 +01:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-08-18 20:31:19 +02:00
|
|
|
name = "libpipeline-1.4.1";
|
2014-02-04 23:33:54 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://savannah/libpipeline/${name}.tar.gz";
|
2015-08-18 20:31:19 +02:00
|
|
|
sha256 = "1vmrs4nvdsmb550bk10cankrd42ffczlibpsnafxpak306rdfins";
|
2014-02-04 23:33:54 +01:00
|
|
|
};
|
|
|
|
|
2016-05-27 18:40:46 +02:00
|
|
|
patches = stdenv.lib.optionals stdenv.isDarwin [ ./fix-on-osx.patch ];
|
|
|
|
|
2014-02-04 23:33:54 +01:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|