summary refs log tree commit diff
path: root/pkgs/development/libraries/libopcodes
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2017-08-26 11:43:30 -0400
committerJohn Ericson <John.Ericson@Obsidian.Systems>2017-12-13 16:08:18 -0500
commit2bba92906231ae021b4778986419320c3792ce48 (patch)
treeeb6f8526328212ec104c8851a18d93b804722099 /pkgs/development/libraries/libopcodes
parent8e557ed2c58e6ce48a8d05dbc57ef84e98b4cecd (diff)
downloadnixpkgs-2bba92906231ae021b4778986419320c3792ce48.tar
nixpkgs-2bba92906231ae021b4778986419320c3792ce48.tar.gz
nixpkgs-2bba92906231ae021b4778986419320c3792ce48.tar.bz2
nixpkgs-2bba92906231ae021b4778986419320c3792ce48.tar.lz
nixpkgs-2bba92906231ae021b4778986419320c3792ce48.tar.xz
nixpkgs-2bba92906231ae021b4778986419320c3792ce48.tar.zst
nixpkgs-2bba92906231ae021b4778986419320c3792ce48.zip
bintools-wrapper: Import separately from cc-wrapper
Diffstat (limited to 'pkgs/development/libraries/libopcodes')
-rw-r--r--pkgs/development/libraries/libopcodes/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/libopcodes/default.nix b/pkgs/development/libraries/libopcodes/default.nix
index f3e12db3981..7ffc40f1494 100644
--- a/pkgs/development/libraries/libopcodes/default.nix
+++ b/pkgs/development/libraries/libopcodes/default.nix
@@ -5,11 +5,11 @@
 
 stdenv.mkDerivation rec {
   name = "libopcodes-${version}";
-  inherit (binutils-raw) version src;
+  inherit (binutils-raw.bintools) version src;
 
   outputs = [ "out" "dev" ];
 
-  patches = binutils-raw.patches ++ [
+  patches = binutils-raw.bintools.patches ++ [
     ../../tools/misc/binutils/build-components-separately.patch
   ];