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

10 lines
278 B
Plaintext
Raw Permalink Normal View History

2017-08-13 15:54:12 -04:00
with (import <nixpkgs> {});
derivation {
name = "hello";
builder = "${bash}/bin/bash";
args = [ ./builder.sh ];
2017-12-28 06:38:30 -05:00
buildInputs = [ gnutar gzip gnumake gcc binutils-unwrapped coreutils gawk gnused gnugrep ];
2017-12-19 04:26:58 -05:00
src = ./hello-2.10.tar.gz;
2017-08-13 15:54:12 -04:00
system = builtins.currentSystem;
}