nixpkgs/pkgs/development/libraries/libpipeline/default.nix
William A. Kennington III 2d695397d8 libpipeline: 1.2.6 -> 1.4.0
2015-03-26 01:06:39 -07:00

18 lines
486 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "libpipeline-1.4.0";
src = fetchurl {
url = "mirror://savannah/libpipeline/${name}.tar.gz";
sha256 = "1dlvp2mxlhg5zbj509kc60h7g39hpgwkzkpdf855cyzizgkmkivr";
};
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;
};
}