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

20 lines
557 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
2018-03-24 16:23:29 +00:00
stdenv.mkDerivation rec {
2020-08-26 11:52:12 +01:00
name = "libpipeline-1.5.3";
2018-03-24 16:23:29 +00:00
src = fetchurl {
url = "mirror://savannah/libpipeline/${name}.tar.gz";
2020-08-26 11:52:12 +01:00
sha256 = "1c5dl017xil2ssb6a5vg927bnsbc9vymfgi9ahvqbb8gypx0igsx";
};
patches = stdenv.lib.optionals stdenv.isDarwin [ ./fix-on-osx.patch ];
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;
};
}