libpipeline: 1.5.4 -> 1.5.6

This commit bumps libpipeline and drops the gnulib patch since the
vendored copy of gnulib has been updated. I avoided squashing this
commit into the previous one since knowing how to patch libpipeline
1.5.4 without upgrading might be useful (for example, in a git bisect
or cherry-pick).

+2 -16
+2 -16
pkgs/development/libraries/libpipeline/default.nix
··· 1 - { lib, stdenv, fetchurl 2 - , gnulib 3 - , runCommand 4 - , patchutils }: 5 6 stdenv.mkDerivation rec { 7 pname = "libpipeline"; ··· 12 sha256 = "sha256-uLRRlJiQIqeewTF/ZKKnWxVRsqVb6gb2dwTLKi5GkLA="; 13 }; 14 15 - patches = lib.optionals stdenv.isDarwin [ 16 - ./fix-on-osx.patch 17 - ] ++ [ 18 - (runCommand "longdouble-redirect-patch-extraPrefix" {} '' 19 - ${patchutils}/bin/filterdiff \ 20 - --strip=1 \ 21 - --addoldprefix=a/gl/ \ 22 - --addnewprefix=b/gl/ \ 23 - ${gnulib.passthru.longdouble-redirect-patch} \ 24 - > $out 25 - '') 26 - ]; 27 28 meta = with lib; { 29 homepage = "http://libpipeline.nongnu.org";
··· 1 + { lib, stdenv, fetchurl }: 2 3 stdenv.mkDerivation rec { 4 pname = "libpipeline"; ··· 9 sha256 = "sha256-uLRRlJiQIqeewTF/ZKKnWxVRsqVb6gb2dwTLKi5GkLA="; 10 }; 11 12 + patches = lib.optionals stdenv.isDarwin [ ./fix-on-osx.patch ]; 13 14 meta = with lib; { 15 homepage = "http://libpipeline.nongnu.org";