-
Notifications
You must be signed in to change notification settings - Fork 53
/
flake.nix
95 lines (92 loc) · 3.47 KB
/
flake.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
description = "Jambhala Cardano Development Suite";
inputs = {
haskellNix.url = "github:input-output-hk/haskell.nix";
nixpkgs.follows = "haskellNix/nixpkgs-unstable";
flake-utils.url = "github:numtide/flake-utils";
CHaP = {
url = "github:input-output-hk/cardano-haskell-packages?ref=repo";
flake = false;
};
};
outputs = { self, nixpkgs, flake-utils, haskellNix, CHaP }:
flake-utils.lib.eachDefaultSystem (system:
let
overlays = [
haskellNix.overlay
(final: prev: {
# This overlay adds our project to pkgs
jambhala =
final.haskell-nix.project' {
src = ./.;
compiler-nix-name = "ghc8107";
# This is used by `nix develop .` to open a shell for use with
# `cabal`, `hlint` and `haskell-language-server`
shell.tools = {
cabal = { };
hlint = "3.4.1";
haskell-language-server = rec {
# HLS fix for stm-hamt bug
src = final.haskell-nix.sources."hls-1.10";
cabalProject = __readFile (src + "/cabal.project");
};
};
# Non-Haskell applications required by Jambhala
shell.buildInputs = with pkgs; [
bashInteractive
gnugrep
haskellPackages.cabal-fmt
haskellPackages.fourmolu
httpie
just
neovim
nixpkgs-fmt
nix-prefetch-git
nodejs-18_x
nodePackages.pnpm
python311
python311Packages.autopep8
(vscode-with-extensions.override {
vscode = pkgs.vscodium;
vscodeExtensions = with pkgs.vscode-extensions; [
asvetliakov.vscode-neovim
dracula-theme.theme-dracula
haskell.haskell
jnoortheen.nix-ide
justusadam.language-haskell
mkhl.direnv
ms-python.python
ms-python.vscode-pylance
] ++ pkgs.vscode-utils.extensionsFromVscodeMarketplace [
{
name = "aiken";
publisher = "TxPipe";
version = "1.0.8";
sha256 = "99b000d27a710d7313dd2639a4ff56ec9d38dcbbbf126c36f259683217a3a6f9";
}
];
})
];
inputMap = { "https://input-output-hk.github.io/cardano-haskell-packages" = CHaP; };
};
})
];
pkgs = import nixpkgs { inherit system overlays; inherit (haskellNix) config; };
flake = pkgs.jambhala.flake { };
in
flake // {
# Built by `nix build .`
packages.default = flake.packages."jambhala:exe:jamb";
});
nixConfig = {
extra-experimental-features = [ "configurable-impure-env" "auto-allocate-uids" ];
extra-substituters = [
"https://cache.iog.io"
# "https://cache.zw3rk.com" # No longer needed
];
extra-trusted-public-keys = [
"hydra.iohk.io:f/Ea+s+dFdN+3Y/G+FDgSq+a5NEWhJGzdjvKNGv0/EQ="
# "loony-tools:pr9m4BkM/5/eSTZlkQyRt57Jz7OMBxNSUiMC4FkcNfk=" # No longer needed
];
};
}