tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
libbfd: back to postPatch, restore configurePlatforms
Will Dietz
8 years ago
42a17d63
e25a3437
+2
-1
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
libbfd
default.nix
+2
-1
pkgs/development/libraries/libbfd/default.nix
···
18
];
19
20
# We just want to build libbfd
21
-
postAutoreconf = ''
22
cd bfd
23
'';
24
25
nativeBuildInputs = [ autoreconfHook264 bison ];
26
buildInputs = [ libiberty zlib ];
27
0
28
configureFlags = [
29
"--enable-targets=all" "--enable-64-bit-bfd"
30
"--enable-install-libbfd"
···
18
];
19
20
# We just want to build libbfd
21
+
postPatch = ''
22
cd bfd
23
'';
24
25
nativeBuildInputs = [ autoreconfHook264 bison ];
26
buildInputs = [ libiberty zlib ];
27
28
+
configurePlatforms = [ "build" "host" ];
29
configureFlags = [
30
"--enable-targets=all" "--enable-64-bit-bfd"
31
"--enable-install-libbfd"