1
0
Fork 0
mirror of https://github.com/NixOS/nix-pills synced 2024-09-20 04:10:12 -04:00
nix-pills/pills/08/hello-nix.txt

10 lines
274 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 ];
2017-12-28 06:38:30 -05:00
inherit 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;
}