skip checks for deps-only derivation

This is probably a crane bug that it's doing this in the first place.
This commit is contained in:
Charles Hall 2025-03-15 15:12:01 -07:00
parent 8b7cbb5f25
commit a901d62575
No known key found for this signature in database
GPG key ID: 7B8E0645816E07CF

View file

@ -102,6 +102,9 @@ let
# Opt out of crane's automagic cross support
doIncludeCrossToolchainEnv = false;
# This is redundant with CI
doCheck = false;
};
in
@ -115,9 +118,6 @@ craneLib.buildPackage (commonAttrs // {
(features' != [])
"--features " + (builtins.concatStringsSep "," features');
# This is redundant with CI
doCheck = false;
env = buildPackageEnv;
passthru = {