libpipeline: Add package

[Bjørn Forsman: modify meta.description so that it doesn't include the
package name and doesn't end in a period.]
This commit is contained in:
William A. Kennington III
2014-02-15 12:16:19 +01:00
committed by Bjørn Forsman
parent 534654e118
commit e5a21b7bed
2 changed files with 19 additions and 0 deletions
@@ -0,0 +1,17 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "libpipeline-1.2.6";
src = fetchurl {
url = "mirror://savannah/libpipeline/${name}.tar.gz";
sha256 = "0wjsigim422ilzs46hxzv98l10zprpbk53gq3jzj6s9kn9n1wljc";
};
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;
};
}
+2
View File
@@ -4948,6 +4948,8 @@ let
libpcap = callPackage ../development/libraries/libpcap { };
libpipeline = callPackage ../development/libraries/libpipeline { };
libpng = callPackage ../development/libraries/libpng { };
libpng_apng = libpng.override { apngSupport = true; };
libpng12 = callPackage ../development/libraries/libpng/12.nix { };