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

updated darwin version accordingly.

not tested
This commit is contained in:
i97henka 2023-06-04 00:07:16 +01:00
parent 6bce7954ef
commit b1a8646ce9

View file

@ -1,11 +1,13 @@
with (import <nixpkgs> {}); let
derivation { pkgs = import <nixpkgs> {};
name = "hello"; in
builder = "${bash}/bin/bash"; pkgs.stdenv.mkDerivation {
args = [ ./hello_builder.sh ]; name = "hello";
inherit gnutar gzip gnumake coreutils gawk gnused gnugrep; builder = "${pkgs.bash}/bin/bash";
gcc = clang; args = [ ./hello_builder.sh ];
bintools = clang.bintools.bintools_bin; inherit (pkgs) gnutar gzip gnumake coreutils gawk gnused gnugrep;
src = ./hello-2.10.tar.gz; gcc = pkgs.clang;
system = builtins.currentSystem; bintools = pkgs.clang.bintools.bintools_bin;
} src = ./hello-2.12.1.tar.gz;
system = builtins.currentSystem;
}