depot/third_party/nixpkgs/pkgs/development/libraries/libpipeline/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

19 lines
548 B
Nix

{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "libpipeline-1.5.3";
src = fetchurl {
url = "mirror://savannah/libpipeline/${name}.tar.gz";
sha256 = "1c5dl017xil2ssb6a5vg927bnsbc9vymfgi9ahvqbb8gypx0igsx";
};
patches = lib.optionals stdenv.isDarwin [ ./fix-on-osx.patch ];
meta = with 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;
};
}