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

Fix darwin hello.nix. (#103)

Specify binutils key, not binutils_unwrapped.
This commit is contained in:
Elben Shira 2018-12-30 15:26:37 -06:00 committed by Wael Nasreddine
parent 97c66d99e1
commit 76b04230b3

View file

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