2021-01-21 09:00:13 -08:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2018-03-24 09:23:29 -07:00
|
|
|
|
2014-02-04 14:33:54 -08:00
|
|
|
stdenv.mkDerivation rec {
|
2020-08-26 03:52:12 -07:00
|
|
|
name = "libpipeline-1.5.3";
|
2018-03-24 09:23:29 -07:00
|
|
|
|
2014-02-04 14:33:54 -08:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://savannah/libpipeline/${name}.tar.gz";
|
2020-08-26 03:52:12 -07:00
|
|
|
sha256 = "1c5dl017xil2ssb6a5vg927bnsbc9vymfgi9ahvqbb8gypx0igsx";
|
2014-02-04 14:33:54 -08:00
|
|
|
};
|
|
|
|
|
2021-01-21 09:00:13 -08:00
|
|
|
patches = lib.optionals stdenv.isDarwin [ ./fix-on-osx.patch ];
|
2016-05-27 09:40:46 -07:00
|
|
|
|
2021-01-21 09:00:13 -08:00
|
|
|
meta = with lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://libpipeline.nongnu.org";
|
2014-02-04 14:33:54 -08:00
|
|
|
description = "C library for manipulating pipelines of subprocesses in a flexible and convenient way";
|
|
|
|
platforms = platforms.unix;
|
|
|
|
license = licenses.gpl3;
|
|
|
|
};
|
|
|
|
}
|