2014-02-04 22:33:54 +00:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-03-26 08:06:39 +00:00
|
|
|
name = "libpipeline-1.4.0";
|
2014-02-04 22:33:54 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://savannah/libpipeline/${name}.tar.gz";
|
2015-03-26 08:06:39 +00:00
|
|
|
sha256 = "1dlvp2mxlhg5zbj509kc60h7g39hpgwkzkpdf855cyzizgkmkivr";
|
2014-02-04 22:33:54 +00: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;
|
|
|
|
};
|
|
|
|
}
|