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

+9 -1
+9 -1
pkgs/tools/text/gnused/default.nix
··· 1 - { lib, stdenv, fetchurl, perl }: 1 + { lib, stdenv, fetchurl, perl 2 + , gnulib }: 2 3 3 4 stdenv.mkDerivation rec { 4 5 pname = "gnused"; ··· 12 13 outputs = [ "out" "info" ]; 13 14 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 + 15 23 preConfigure = "patchShebangs ./build-aux/help2man"; 16 24 17 25 # Prevents attempts of running 'help2man' on cross-built binaries.