depot/third_party/nixpkgs/pkgs/development/libraries/libpipeline/default.nix
Default email 58f8944c92 Project import generated by Copybara.
GitOrigin-RevId: 5aba0fe9766a7201a336249fd6cb76e0d7ba2faf
2020-09-24 23:45:31 -05:00

19 lines
557 B
Nix

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