aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--flake.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/flake.nix b/flake.nix
index bdb3b21..e7fff1b 100644
--- a/flake.nix
+++ b/flake.nix
@@ -90,25 +90,25 @@
check-executables-have-shebangs = {
entry =
- "${pkgs.python3Packages.pre-commit-hooks}/check-executables-have-shebangs";
+ "${pkgs.python3Packages.pre-commit-hooks}/bin/check-executables-have-shebangs";
types = [ "text" "executable" ];
};
check-json = {
enable = true;
- entry = "${pkgs.python3Packages.pre-commit-hooks}/check-json";
+ entry = "${pkgs.python3Packages.pre-commit-hooks}/bin/check-json";
types = [ "json" ];
};
check-toml = {
enable = true;
- entry = "${pkgs.python3Packages.pre-commit-hooks}/check-toml";
+ entry = "${pkgs.python3Packages.pre-commit-hooks}/bin/check-toml";
types = [ "toml" ];
};
check-yaml = {
enable = true;
- entry = "${pkgs.python3Packages.pre-commit-hooks}/check-yaml";
+ entry = "${pkgs.python3Packages.pre-commit-hooks}/bin/check-yaml";
types = [ "yaml" ];
};