1
0
Fork 0
mirror of https://github.com/NixOS/nix-pills synced 2024-09-19 04:00:13 -04:00

Pill 8: fix Darwin reference to binutils

The Darwin nix still assigns to `binutils`, even though the
builder itself was updated to point to `bintools` in
ce931b9697. Fixing this ensures
the hello example actually builds on Darwin.
This commit is contained in:
Misty De Méo 2023-03-28 13:57:29 -07:00
parent c02fb1ef30
commit 059c9bed55
No known key found for this signature in database
GPG key ID: 74CF3AD781D5453D

View file

@ -5,7 +5,7 @@ derivation {
args = [ ./hello_builder.sh ];
inherit gnutar gzip gnumake coreutils gawk gnused gnugrep;
gcc = clang;
binutils = clang.bintools.bintools_bin;
bintools = clang.bintools.bintools_bin;
src = ./hello-2.10.tar.gz;
system = builtins.currentSystem;
}