about summary refs log tree commit diff
path: root/users/glittershark/xanthous/hie.nix
blob: c8b1d2b5f538a5e71228717e0bf2e15ee2f6e63f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ pkgs ? (import ../../../. {}).third_party }:

let
  all-hies = (fetchTarball {
    url = "https://github.com/infinisil/all-hies/archive/eff5d9a5e1a84150014095494331cf63e59923af.tar.gz";
    sha256 = "19bws9fyjhgiikig86cri05fxz1wrz60n69zrigq5wzbyn4hwv9h";
  });

  sources = import "${all-hies}/sources.nix";
  build = import "${all-hies}/build.nix";

in (build {
  glibcName = pkgs.glibc.name;
  inherit sources;
  ghcVersion = "8.8.3";
}).combined