nixpkgs/pkgs/development/libraries/libopcodes/default.nix
Samuel Dionne-Riel dbe556af9c binutils: Move patches in versioned dir
We'll have multiple binutils to contend with.
2020-11-09 22:32:12 -05:00

45 lines
1.2 KiB
Nix

{ stdenv, buildPackages
, autoreconfHook, bison, binutils-unwrapped
, libiberty, libbfd
}:
stdenv.mkDerivation {
pname = "libopcodes";
inherit (binutils-unwrapped) version src;
outputs = [ "out" "dev" ];
patches = binutils-unwrapped.patches ++ [
(binutils-unwrapped.patchesDir + "/build-components-separately.patch")
];
# We just want to build libopcodes
postPatch = ''
cd opcodes
find . ../include/opcode -type f -exec sed {} -i -e 's/"bfd.h"/<bfd.h>/' \;
'';
depsBuildBuild = [ buildPackages.stdenv.cc ];
nativeBuildInputs = [ autoreconfHook bison ];
buildInputs = [ libiberty ];
# dis-asm.h includes bfd.h
propagatedBuildInputs = [ libbfd ];
configurePlatforms = [ "build" "host" ];
configureFlags = [
"--enable-targets=all" "--enable-64-bit-bfd"
"--enable-install-libbfd"
"--enable-shared"
];
enableParallelBuilding = true;
meta = with stdenv.lib; {
description = "A library from binutils for manipulating machine code";
homepage = "https://www.gnu.org/software/binutils/";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ ericson2314 ];
platforms = platforms.unix;
};
}