2019-08-31 19:15:17 +02:00
|
|
|
{ nixpkgs ? import ./nixpkgs.nix {}, compiler ? "ghc865" }:
|
2019-08-25 19:28:10 +02:00
|
|
|
let
|
|
|
|
inherit (nixpkgs) pkgs;
|
|
|
|
all-hies = import (fetchTarball "https://github.com/infinisil/all-hies/tarball/master") {};
|
|
|
|
hie = all-hies.selection { selector = p: { inherit (p) ghc865; }; };
|
2019-08-31 19:15:17 +02:00
|
|
|
xanthous = pkgs.haskellPackages.callPackage (import ./pkg.nix { inherit nixpkgs; }) {};
|
2019-08-25 19:28:10 +02:00
|
|
|
in
|
|
|
|
xanthous // { inherit hie; }
|