Skip to content

Commit

Permalink
Merge pull request #328507 from rhelmot/freebsd-libpipeline
Browse files Browse the repository at this point in the history
libpipeline: update gnu config scripts
  • Loading branch information
Ericson2314 authored Jul 20, 2024
2 parents 8cd63a3 + 97e1862 commit dfefabb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pkgs/development/libraries/libpipeline/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ lib, stdenv, fetchurl }:
{ lib, stdenv, fetchurl, updateAutotoolsGnuConfigScriptsHook }:

stdenv.mkDerivation rec {
pname = "libpipeline";
Expand All @@ -11,6 +11,10 @@ stdenv.mkDerivation rec {

patches = lib.optionals stdenv.isDarwin [ ./fix-on-osx.patch ];

# necessary to build on FreeBSD native pending inclusion of
# https://git.savannah.gnu.org/cgit/config.git/commit/?id=e4786449e1c26716e3f9ea182caf472e4dbc96e0
nativeBuildInputs = [ updateAutotoolsGnuConfigScriptsHook ];

meta = with lib; {
homepage = "http://libpipeline.nongnu.org";
description = "C library for manipulating pipelines of subprocesses in a flexible and convenient way";
Expand Down

0 comments on commit dfefabb

Please sign in to comment.