nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

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