nixpkgs/pkgs/development/libraries/libpipeline/default.nix

18 lines
486 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
2015-03-26 09:06:39 +01:00
name = "libpipeline-1.4.0";
src = fetchurl {
url = "mirror://savannah/libpipeline/${name}.tar.gz";
2015-03-26 09:06:39 +01:00
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;
};
}