2024-07-19 19:18:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, updateAutotoolsGnuConfigScriptsHook }:
|
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";
|
2024-08-28 20:14:31 +00:00
|
|
|
version = "1.5.8";
|
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";
|
2024-08-28 20:14:31 +00:00
|
|
|
hash = "sha256-GxIDyhUszWOYPD8hEvf+b6Wv1FMhjt5RU9GzHhG7hAU=";
|
2014-02-04 22:33:54 +00:00
|
|
|
};
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
patches = lib.optionals stdenv.hostPlatform.isDarwin [ ./fix-on-osx.patch ];
|
2016-05-27 16:40:46 +00:00
|
|
|
|
2024-07-19 19:18:33 +00:00
|
|
|
# necessary to build on FreeBSD native pending inclusion of
|
|
|
|
# https://git.savannah.gnu.org/cgit/config.git/commit/?id=e4786449e1c26716e3f9ea182caf472e4dbc96e0
|
|
|
|
nativeBuildInputs = [ updateAutotoolsGnuConfigScriptsHook ];
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|