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/autotools-nix.txt

12 lines
313 B
Plaintext
Raw Normal View History

2017-08-13 15:54:12 -04:00
pkgs: attrs:
with pkgs;
let defaultAttrs = {
builder = "${bash}/bin/bash";
args = [ ./builder.sh ];
2017-12-28 06:38:30 -05:00
baseInputs = [ gnutar gzip gnumake gcc binutils-unwrapped coreutils gawk gnused gnugrep ];
2017-08-13 15:54:12 -04:00
buildInputs = [];
system = builtins.currentSystem;
};
in
derivation (defaultAttrs // attrs)