tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
gnused: apply gnulib.passthru.longdouble-redirect-patch
Adam Joseph
2 years ago
1fa5ff7d
9eafe431
+9
-1
1 changed file
expand all
collapse all
unified
split
pkgs
tools
text
gnused
default.nix
+9
-1
pkgs/tools/text/gnused/default.nix
···
1
-
{ lib, stdenv, fetchurl, perl }:
0
2
3
stdenv.mkDerivation rec {
4
pname = "gnused";
···
12
outputs = [ "out" "info" ];
13
14
nativeBuildInputs = [ perl ];
0
0
0
0
0
0
0
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.