Clean up deps

- `strictDeps`

- Ensure it builds with and without `doCheck`
This commit is contained in:
John Ericson
2024-01-25 11:32:00 -05:00
parent 1471aacadc
commit 1bd195a513
2 changed files with 24 additions and 10 deletions

View File

@ -68,6 +68,12 @@
build = forEachSystem (system: packages.${system}.hydra);
buildNoTests = forEachSystem (system:
packages.${system}.hydra.overrideAttrs (_: {
doCheck = false;
})
);
manual = forEachSystem (system:
let pkgs = pkgsBySystem.${system}; in
pkgs.runCommand "hydra-manual-${pkgs.hydra.version}" { }