From 76b04230b32c21fd6d7cfec2dd9eb4a481c4aee8 Mon Sep 17 00:00:00 2001 From: Elben Shira Date: Sun, 30 Dec 2018 15:26:37 -0600 Subject: [PATCH] Fix darwin hello.nix. (#103) Specify binutils key, not binutils_unwrapped. --- pills/08/hello-nix-darwin.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pills/08/hello-nix-darwin.txt b/pills/08/hello-nix-darwin.txt index b9f0d71..be5381b 100644 --- a/pills/08/hello-nix-darwin.txt +++ b/pills/08/hello-nix-darwin.txt @@ -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; }