mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 03:15:56 +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
|
{ stdenv
|
||||||
, fetchurl, autoreconfHook264, bison, binutils
|
, fetchurl, autoreconfHook264, bison, binutils-raw
|
||||||
, libiberty, zlib
|
, libiberty, zlib
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "libbfd-${version}";
|
name = "libbfd-${version}";
|
||||||
inherit (binutils) version src;
|
inherit (binutils-raw) version src;
|
||||||
|
|
||||||
outputs = [ "out" "dev" ];
|
outputs = [ "out" "dev" ];
|
||||||
|
|
||||||
patches = binutils.patches ++ [
|
patches = binutils-raw.patches ++ [
|
||||||
../../tools/misc/binutils/build-components-separately.patch
|
../../tools/misc/binutils/build-components-separately.patch
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -1,15 +1,15 @@
|
|||||||
{ stdenv, buildPackages
|
{ stdenv, buildPackages
|
||||||
, fetchurl, autoreconfHook264, bison, binutils
|
, fetchurl, autoreconfHook264, bison, binutils-raw
|
||||||
, libiberty, libbfd
|
, libiberty, libbfd
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "libopcodes-${version}";
|
name = "libopcodes-${version}";
|
||||||
inherit (binutils) version src;
|
inherit (binutils-raw) version src;
|
||||||
|
|
||||||
outputs = [ "out" "dev" ];
|
outputs = [ "out" "dev" ];
|
||||||
|
|
||||||
patches = binutils.patches ++ [
|
patches = binutils-raw.patches ++ [
|
||||||
../../tools/misc/binutils/build-components-separately.patch
|
../../tools/misc/binutils/build-components-separately.patch
|
||||||
];
|
];
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user