Set strictDeps=true on our top level packages
Some checks failed
CI / build:all (pull_request) Failing after 5s

This commit is contained in:
Aleix Boné 2025-07-23 10:43:33 +02:00
parent 44cc60fcd8
commit 43a1b25c23
No known key found for this signature in database

View File

@ -6,7 +6,11 @@ with final.lib;
let
callPackage = final.callPackage;
bscPkgs = {
mkStrict = drv: if (isDerivation drv && drv ? overrideAttrs && !(drv ? strictDeps))
then drv.overrideAttrs { strictDeps = true; }
else drv;
bscPkgs = mapAttrs (_: mkStrict) {
amd-uprof = prev.callPackage ./pkgs/amd-uprof/default.nix { };
bench6 = callPackage ./pkgs/bench6/default.nix { };
bigotes = callPackage ./pkgs/bigotes/default.nix { };