blob: f73c537abd4397dc1d8e1dc077092c569a7fba8b (
plain) (
blame)
1
2
3
4
5
6
7
8
|
{ nixpkgs ? import <nixpkgs> {}, 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 ./xanthous.nix {};
in
xanthous // { inherit hie; }
|