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
2019-02-23 17:17:43 -05:00

11 lines
287 B
Plaintext

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;
src = ./hello-2.10.tar.gz;
system = builtins.currentSystem;
}