-
Notifications
You must be signed in to change notification settings - Fork 2
/
flake.nix
70 lines (54 loc) · 1.71 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
{
description = "batcher development environment";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/master";
flake-utils.url = "github:numtide/flake-utils";
nix-filter.url = "github:numtide/nix-filter";
};
outputs = { self, nixpkgs, flake-utils, nix-filter }@inputs:
flake-utils.lib.eachDefaultSystem (system:
let pkgs = import nixpkgs { inherit system; };
in {
devShells.${system}.default = pkgs.mkShell {
name = "batcher";
buildInputs = with pkgs;
with ocamlPackages;
with nodePackages; [
cmake
glibc
nixfmt
npm
yarn
node2nix
nodejs-18_x
];
shellHook = ''
alias lv="ligo version"
alias lcc="ligo compile contract"
alias lce="ligo compile expression"
alias lcp="ligo compile parameter"
alias lcs="ligo compile storage"
alias build="make build"
alias test="make test"
alias run-ui="npm run start:ghostnet-ci"
alias build-ui="npm run build:ghostnet-ci"
'';
};
packages = let
contract = pkgs.stdenv.mkDerivation {
name = "batcher";
src = ./.;
buildInputs = with pkgs; with ocamlPackages; [ cmake glibc nixfmt ];
buildPhase = ''
mkdir -p $out
make build
'';
};
in { inherit contract; };
defaultPackage = self.packages.${system}.contract;
apps = {
contract =
flake-utils.lib.mkApp { drv = self.packages.${system}.contract; };
};
});
}