Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am rolfschr on github.
  • I am rolfschr (https://keybase.io/rolfschr) on keybase.
  • I have a public key ASBqz1B-VWtbQyIfjcBiDsNTrIC3baaC3XZaiAyI6lQiywo

To claim this, I am signing this object:

@rolfschr
rolfschr / script.log
Last active August 31, 2018 07:33
Stack GHC install failes on Ubunut 18.04
$ curl -sSL https://get.haskellstack.org/ | sh
Detected Linux distribution: ubuntu
Installing dependencies...
Reading package lists... Done
Building dependency tree
Reading state information... Done
g++ is already the newest version (4:7.3.0-3ubuntu2).
gcc is already the newest version (4:7.3.0-3ubuntu2).
@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;
};