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.txt

11 lines
287 B
Plaintext
Raw Normal View History

2017-08-13 15:54:12 -04:00
with (import <nixpkgs> {});
derivation {
name = "hello";
builder = "${bash}/bin/bash";
args = [ ./hello_builder.sh ];
inherit gnutar gzip gnumake gcc coreutils gawk gnused gnugrep;
bintools = binutils.bintools;
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;
}