2014-02-04 22:33:54 +00:00
|
|
|
{ stdenv, fetchurl }:
|
2018-03-24 16:23:29 +00:00
|
|
|
|
2014-02-04 22:33:54 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-03-25 23:08:33 +00:00
|
|
|
name = "libpipeline-1.5.1";
|
2018-03-24 16:23:29 +00:00
|
|
|
|
2014-02-04 22:33:54 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://savannah/libpipeline/${name}.tar.gz";
|
2019-03-25 23:08:33 +00:00
|
|
|
sha256 = "0bwh5xz5f2czwb7f564jz1mp4znm8pldnvf65fs0hpw4gmmp0cyn";
|
2014-02-04 22:33:54 +00:00
|
|
|
};
|
|
|
|
|
2016-05-27 17:40:46 +01:00
|
|
|
patches = stdenv.lib.optionals stdenv.isDarwin [ ./fix-on-osx.patch ];
|
|
|
|
|
2014-02-04 22:33:54 +00:00
|
|
|
meta = with stdenv.lib; {
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = http://libpipeline.nongnu.org;
|
2014-02-04 22:33:54 +00:00
|
|
|
description = "C library for manipulating pipelines of subprocesses in a flexible and convenient way";
|
|
|
|
platforms = platforms.unix;
|
|
|
|
license = licenses.gpl3;
|
|
|
|
};
|
|
|
|
}
|