2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2018-03-24 16:23:29 +00:00
|
|
|
|
2014-02-04 22:33:54 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2021-11-09 21:14:04 +00:00
|
|
|
pname = "libpipeline";
|
2022-08-16 15:05:23 +00:00
|
|
|
version = "1.5.6";
|
2018-03-24 16:23:29 +00:00
|
|
|
|
2014-02-04 22:33:54 +00:00
|
|
|
src = fetchurl {
|
2021-11-09 21:14:04 +00:00
|
|
|
url = "mirror://savannah/libpipeline/libpipeline-${version}.tar.gz";
|
2022-08-16 15:05:23 +00:00
|
|
|
sha256 = "sha256-YPu559w5hSjl86d2r1e7KMo/5dnwzYqWGsbOv+bpt5c=";
|
2014-02-04 22:33:54 +00:00
|
|
|
};
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
patches = lib.optionals stdenv.isDarwin [ ./fix-on-osx.patch ];
|
2016-05-27 16:40:46 +00:00
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://libpipeline.nongnu.org";
|
2014-02-04 22:33:54 +00:00
|
|
|
description = "C library for manipulating pipelines of subprocesses in a flexible and convenient way";
|
|
|
|
platforms = platforms.unix;
|
|
|
|
license = licenses.gpl3;
|
|
|
|
};
|
|
|
|
}
|