1{ stdenv, fetchurl }:
2
3stdenv.mkDerivation rec {
4 name = "libpipeline-1.4.1";
5
6 src = fetchurl {
7 url = "mirror://savannah/libpipeline/${name}.tar.gz";
8 sha256 = "1vmrs4nvdsmb550bk10cankrd42ffczlibpsnafxpak306rdfins";
9 };
10
11 patches = stdenv.lib.optionals stdenv.isDarwin [ ./fix-on-osx.patch ];
12
13 meta = with stdenv.lib; {
14 homepage = http://libpipeline.nongnu.org;
15 description = "C library for manipulating pipelines of subprocesses in a flexible and convenient way";
16 platforms = platforms.unix;
17 license = licenses.gpl3;
18 };
19}