1
Fork 0

flake.nix: remove unnecessary `@ inputs`

This commit is contained in:
Motiejus Jakštys 2024-01-15 10:57:11 +02:00
parent 290838e6e7
commit 9870e5c239
1 changed files with 3 additions and 3 deletions

View File

@ -34,7 +34,7 @@
pre-commit-hooks, pre-commit-hooks,
geoip2-tarball, geoip2-tarball,
... ...
} @ inputs: }:
flake-utils.lib.eachDefaultSystem (system: let flake-utils.lib.eachDefaultSystem (system: let
pkgs = import nixpkgs {inherit system;}; pkgs = import nixpkgs {inherit system;};
@ -103,13 +103,13 @@
python3Packages.flake8 python3Packages.flake8
# TODO: vim integration via EXITINT? # TODO: vim integration via EXITINT?
# autopep8 --in-place --recursive . # see 'make check'
python3Packages.autopep8 python3Packages.autopep8
]; ];
GEOIP_PATH = "${geoip-mmdb}"; GEOIP_PATH = "${geoip-mmdb}";
E11SYNC_DEBUG = "1"; E11SYNC_DEBUG = "1";
LOCALE_ARCHIVE = "${pkgs.glibcLocales}/lib/locale/locale-archive"; LOCALE_ARCHIVE = "${pkgs.glibcLocales}/lib/locale/locale-archive";
inherit (inputs.self.checks.${system}.pre-commit-check) shellHook; inherit (self.checks.${system}.pre-commit-check) shellHook;
}; };
formatter = pkgs.alejandra; formatter = pkgs.alejandra;