diff --git a/survey/default.nix b/survey/default.nix index 69d87c6..13822eb 100644 --- a/survey/default.nix +++ b/survey/default.nix @@ -1709,11 +1709,15 @@ let ]) ]); in - final.lib.mapAttrs + (final.lib.mapAttrs (name: value: if (isProperHaskellPackage value && isExecutable value) then statify value else value ) - super + super) // { + callPackage = path: args: + let value = super.callPackage path args; in + if (isProperHaskellPackage value && isExecutable value) then statify value else value; + } ); }); };