mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 15:36:47 +03:00
libbfd, libopcodes: Fix eval on Darwin
Not sure how I missed this...
This commit is contained in:
parent
ab77a6bb1e
commit
9a24437411
@ -1,15 +1,15 @@
|
||||
{ stdenv
|
||||
, fetchurl, autoreconfHook264, bison, binutils
|
||||
, fetchurl, autoreconfHook264, bison, binutils-raw
|
||||
, libiberty, zlib
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libbfd-${version}";
|
||||
inherit (binutils) version src;
|
||||
inherit (binutils-raw) version src;
|
||||
|
||||
outputs = [ "out" "dev" ];
|
||||
|
||||
patches = binutils.patches ++ [
|
||||
patches = binutils-raw.patches ++ [
|
||||
../../tools/misc/binutils/build-components-separately.patch
|
||||
];
|
||||
|
||||
|
@ -1,15 +1,15 @@
|
||||
{ stdenv, buildPackages
|
||||
, fetchurl, autoreconfHook264, bison, binutils
|
||||
, fetchurl, autoreconfHook264, bison, binutils-raw
|
||||
, libiberty, libbfd
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libopcodes-${version}";
|
||||
inherit (binutils) version src;
|
||||
inherit (binutils-raw) version src;
|
||||
|
||||
outputs = [ "out" "dev" ];
|
||||
|
||||
patches = binutils.patches ++ [
|
||||
patches = binutils-raw.patches ++ [
|
||||
../../tools/misc/binutils/build-components-separately.patch
|
||||
];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user