lol

Merge pull request #328507 from rhelmot/freebsd-libpipeline

libpipeline: update gnu config scripts

authored by

John Ericson and committed by
GitHub
dfefabb7 8cd63a3c

+5 -1
+5 -1
pkgs/development/libraries/libpipeline/default.nix
··· 1 - { lib, stdenv, fetchurl }: 1 + { lib, stdenv, fetchurl, updateAutotoolsGnuConfigScriptsHook }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "libpipeline"; ··· 10 10 }; 11 11 12 12 patches = lib.optionals stdenv.isDarwin [ ./fix-on-osx.patch ]; 13 + 14 + # necessary to build on FreeBSD native pending inclusion of 15 + # https://git.savannah.gnu.org/cgit/config.git/commit/?id=e4786449e1c26716e3f9ea182caf472e4dbc96e0 16 + nativeBuildInputs = [ updateAutotoolsGnuConfigScriptsHook ]; 13 17 14 18 meta = with lib; { 15 19 homepage = "http://libpipeline.nongnu.org";