Skip to content

Instantly share code, notes, and snippets.

@rolfschr
rolfschr / autotools.nix
Last active June 18, 2018 08:09 — forked from lucabrunox/autotools.nix
Nix pill 10
pkgs: attrs:
with pkgs;
let defaultAttrs = {
builder = "${bash}/bin/bash";
args = [ ./builder.sh ];
setup = ./setup.sh;
baseInputs = [ gnutar gzip gnumake gcc binutils coreutils gawk gnused gnugrep patchelf findutils ];
buildInputs = [];
system = builtins.currentSystem;
};