-
Notifications
You must be signed in to change notification settings - Fork 1
/
flake.nix
53 lines (51 loc) · 1.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
{
description = "Nix flake for the YulDSL monorepo";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
foundry = {
url = "github:shazow/foundry.nix/monthly";
inputs.flake-utils.follows = "flake-utils";
inputs.nixpkgs.follows = "nixpkgs";
};
solc = {
url = "github:hellwolf/solc.nix";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { nixpkgs, flake-utils, foundry, solc, ... }: (flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs {
inherit system;
overlays = [
foundry.overlay
solc.overlay
];
};
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
# foundry and solc
solc_0_8_28
foundry-bin
# haskell tooling
cabal-install
haskell.compiler.ghc910
haskell.packages.ghc98.hlint_3_8
haskell.packages.ghc98.stylish-haskell # it doesn't work with 9.10
haskell.packages.ghc910.haskell-language-server
];
inherit shellHook;
};
}));
}