Compare commits

..

1 commit

Author SHA1 Message Date
f61b41b675
added alias-to-sieve to this repository 2025-03-26 22:51:15 +01:00

View file

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