9 lines
348 B
Nix
9 lines
348 B
Nix
|
{ 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; }
|