-
Notifications
You must be signed in to change notification settings - Fork 1
/
flake.nix
34 lines (32 loc) · 982 Bytes
/
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
{
description = "Nix flake for the YulDSL monorepo";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { nixpkgs, flake-utils, ... }: (flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
commonDevInputs = with pkgs; [
jq
shellcheck
];
shellHook = ''
# This makes binaries of this project available for testing, e.g. `yolc`
export PATH=$PWD/hs-pkgs/yol-suite/bin/:$PATH
'';
in {
devShells.default = pkgs.mkShell {
buildInputs = with pkgs; commonDevInputs ++ [
# local dev tooling
nodePackages.nodemon
# haskell tooling
cabal-install
haskell.compiler.ghc910
haskell.packages.ghc98.hlint_3_8
haskell.packages.ghc910.haskell-language-server
];
inherit shellHook;
};
}));
}