about summary refs log tree commit diff
path: root/default.nix
blob: 7cf9f4beb451d1ca2448e0d4cfe115e1798cb96d (plain) (blame)
1
2
3
4
5
6
7
8
{ nixpkgs ? import ./nixpkgs.nix {}, compiler ? "ghc865" }:
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; }; };
  xanthous = pkgs.haskellPackages.callPackage (import ./pkg.nix { inherit nixpkgs; }) {};
in
xanthous // { inherit hie; }