diff --git a/pills/08/hello-builder.txt b/pills/08/hello-builder.txt index 44e277f..0699ccb 100644 --- a/pills/08/hello-builder.txt +++ b/pills/08/hello-builder.txt @@ -1,4 +1,4 @@ -export PATH="$gnutar/bin:$gcc/bin:$gnumake/bin:$coreutils/bin:$gawk/bin:$gzip/bin:$gnugrep/bin:$gnused/bin:$binutils_unwrapped/bin" +export PATH="$gnutar/bin:$gcc/bin:$gnumake/bin:$coreutils/bin:$gawk/bin:$gzip/bin:$gnugrep/bin:$gnused/bin:$binutils/bin" tar -xzf $src cd hello-2.10 ./configure --prefix=$out diff --git a/pills/08/hello-nix.txt b/pills/08/hello-nix.txt index 305446a..39f02c2 100644 --- a/pills/08/hello-nix.txt +++ b/pills/08/hello-nix.txt @@ -3,7 +3,8 @@ derivation { name = "hello"; builder = "${bash}/bin/bash"; args = [ ./hello_builder.sh ]; - inherit gnutar gzip gnumake gcc binutils-unwrapped coreutils gawk gnused gnugrep; + inherit gnutar gzip gnumake gcc coreutils gawk gnused gnugrep; + binutils = binutils-unwrapped; src = ./hello-2.10.tar.gz; system = builtins.currentSystem; }