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

changing hello.nix

NB Darwin variant still outstanding.
This commit is contained in:
i97henka 2023-06-03 16:28:36 +01:00
parent b865367523
commit a826d304a0

View file

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