forked from 0xPolygon/cdk-validium-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
63 lines (59 loc) · 1.9 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
{
description = "cdk-validium-node, with go development environment";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
flake-compat.url = "github:edolstra/flake-compat";
flake-compat.flake = false;
pre-commit-hooks = {
url = "github:cachix/pre-commit-hooks.nix";
inputs = {
nixpkgs.follows = "nixpkgs";
flake-compat.follows = "flake-compat";
};
};
};
outputs = { self, nixpkgs, flake-utils, flake-compat, pre-commit-hooks }:
flake-utils.lib.eachDefaultSystem (system:
let pkgs = import nixpkgs { inherit system; };
in with pkgs; {
checks = {
pre-commit-check = pre-commit-hooks.lib.${system}.run {
src = ./.;
hooks = {
nixpkgs-fmt.enable = true;
go-fmt = {
enable = true;
description = "Enforce go fmt";
entry = "go fmt";
types_or = [ "go" ];
pass_filenames = true;
};
};
};
};
devShells.default =
let # nixWithFlakes allows pre v2.4 nix installations to use
# flake commands (like `nix flake update`)
nixWithFlakes = pkgs.writeShellScriptBin "nix" ''
exec ${pkgs.nixFlakes}/bin/nix --experimental-features "nix-command flakes" "$@"
'';
in
mkShell {
buildInputs = [
go
protobuf
docker
docker-compose
git
nixWithFlakes
nixpkgs-fmt
];
shellHook = ''
# avoid polluting system installed GOPATH
export GOPATH=$PWD/.go-nix
export PATH=$GOPATH/bin:$PATH
'' + self.checks.${system}.pre-commit-check.shellHook;
};
});
}