-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.nix
36 lines (31 loc) · 853 Bytes
/
default.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
let
name = "kite";
compiler = "ghc902";
sources = import ./nix/sources.nix { };
nixpkgs = import sources.nixpkgs { };
gitignore = nixpkgs.nix-gitignore.gitignoreSource [ ];
haskellPackages = nixpkgs.pkgs.haskell.packages.${compiler}.override {
overrides = self: super: {
"${name}" = self.callCabal2nix "${name}" (gitignore ./.) { };
};
};
shell = haskellPackages.shellFor {
packages = p: [ p."${name}" ];
buildInputs = with nixpkgs.pkgs.haskell.packages.${compiler}; [
haskellPackages.cabal-install
ghcid
brittany
hlint
nixpkgs.nixpkgs-fmt
nixpkgs.chez
];
withHoogle = true;
};
exe = nixpkgs.haskell.lib.justStaticExecutables (haskellPackages."${name}");
in
{
inherit shell;
inherit exe;
inherit haskellPackages;
"${name}" = haskellPackages."${name}";
}