diff --git a/packages/flake-module.nix b/packages/flake-module.nix index 36e39d7..0dc6b22 100644 --- a/packages/flake-module.nix +++ b/packages/flake-module.nix @@ -2,6 +2,7 @@ perSystem = { pkgs, system, + self', ... }: { # We build the alias to sieve tool here, this is a two step process, we first generate @@ -23,5 +24,6 @@ }; in (pkgs.callPackage alias-to-sieve-nix {}).rootCrate.build; + checks.alias-to-sieve = self'.packages.alias-to-sieve.override {runTests = true;}; }; }