mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
cc65: fix darwin build
This commit is contained in:
parent
6be706bbe5
commit
e726f8034f
1 changed files with 4 additions and 1 deletions
|
@ -13,7 +13,10 @@ stdenv.mkDerivation rec {
|
|||
sha256 = "01a15yvs455qp20hri2pbg2wqvcip0d50kb7dibi9427hqk9cnj4";
|
||||
};
|
||||
|
||||
makeFlags = [ "PREFIX=${placeholder "out"}"];
|
||||
makeFlags = [
|
||||
"PREFIX=${placeholder "out"}"
|
||||
"CC=${stdenv.cc.targetPrefix}cc"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://cc65.github.io/";
|
||||
|
|
Loading…
Reference in a new issue