Compare commits

...

2 Commits

Author SHA1 Message Date
7e7b5c59bf
Fix infinite recursion evaluating lib
All checks were successful
CI / build:all (pull_request) Successful in 15s
2025-10-07 17:27:51 +02:00
43a1b25c23
Set strictDeps=true on our top level packages
Some checks failed
CI / build:all (pull_request) Failing after 5s
2025-10-07 16:27:46 +02:00

View File

@ -1,12 +1,18 @@
final: /* Future last stage */
prev: /* Previous stage */
with final.lib;
let
inherit (prev) lib;
inherit (lib) collect filterAttrs isDerivation mapAttrs;
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 { };