diff options
author | Alan Pearce | 2024-05-23 03:33:23 +0200 |
---|---|---|
committer | Alan Pearce | 2024-05-23 03:33:23 +0200 |
commit | 8469992f30544606151e200378afceb880843623 (patch) | |
tree | c66749e9ffe4357ed47988162f6b88d7e3a3fb92 /flake.nix | |
parent | c8c7dd2a02eb145632b04d2710d297bd6af63a94 (diff) | |
download | website-8469992f30544606151e200378afceb880843623.tar.lz website-8469992f30544606151e200378afceb880843623.tar.zst website-8469992f30544606151e200378afceb880843623.zip |
add pre-commit hooks
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix index 85f7915..bf5695f 100644 --- a/flake.nix +++ b/flake.nix @@ -11,8 +11,9 @@ inputs.nixpkgs.follows = "nixpkgs"; inputs.flake-utils.follows = "utils"; }; + inputs.pre-commit-hooks.url = "github:cachix/pre-commit-hooks.nix"; - outputs = { self, nixpkgs, utils, gomod2nix, ... }: + outputs = { self, nixpkgs, utils, gomod2nix, pre-commit-hooks, ... }: utils.lib.eachDefaultSystem (system: let @@ -37,6 +38,7 @@ }; default = pkgs.mkShell { inputsFrom = [ packages.builder ]; + inherit (self.checks.${system}.pre-commit-check) shellHook; packages = with pkgs; [ gopls gotools @@ -54,6 +56,27 @@ ${pkgs.hyperlink}/bin/hyperlink ${packages.website}/website/public touch $out ''; + pre-commit-check = pre-commit-hooks.lib.${system}.run { + src = ./.; + hooks = { + go-mod-tidy = { + enable = true; + name = "go-mod-tidy"; + description = "Run `go mod tidy`"; + types_or = [ "go" "go-mod" ]; + entry = "${pkgs.go}/bin/go mod tidy"; + pass_filenames = false; + }; + gomod2nix = { + enable = true; + name = "gomod2nix"; + description = "Import go.mod updates to nix"; + types_or = [ "go-sum" ]; + entry = "${pkgs.gomod2nix}/bin/gomod2nix"; + pass_filenames = false; + }; + }; + }; }; }); } |