gnused: apply gnulib.passthru.longdouble-redirect-patch

+9 -1
+9 -1
pkgs/tools/text/gnused/default.nix
··· 1 - { lib, stdenv, fetchurl, perl }: 2 3 stdenv.mkDerivation rec { 4 pname = "gnused"; ··· 12 outputs = [ "out" "info" ]; 13 14 nativeBuildInputs = [ perl ]; 15 preConfigure = "patchShebangs ./build-aux/help2man"; 16 17 # Prevents attempts of running 'help2man' on cross-built binaries.
··· 1 + { lib, stdenv, fetchurl, perl 2 + , gnulib }: 3 4 stdenv.mkDerivation rec { 5 pname = "gnused"; ··· 13 outputs = [ "out" "info" ]; 14 15 nativeBuildInputs = [ perl ]; 16 + 17 + patches = [ 18 + # this change to gnused's vendored copy of gnulib is already 19 + # merged upstream; we can drop this patch on the next version bump 20 + gnulib.passthru.longdouble-redirect-patch 21 + ]; 22 + 23 preConfigure = "patchShebangs ./build-aux/help2man"; 24 25 # Prevents attempts of running 'help2man' on cross-built binaries.