nixpkgs/pkgs/development/libraries/libpipeline/default.nix
William A. Kennington III e5a21b7bed 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.]
2014-02-15 12:16:19 +01:00

18 lines
486 B
Nix

{ 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;
};
}