Set strictDeps=true on our top level packages
This commit is contained in:
		
							parent
							
								
									2ffdd53d86
								
							
						
					
					
						commit
						46524cd2ec
					
				| @ -9,7 +9,11 @@ let | ||||
|   mkDeps = name: pkgs: final.runCommand name { } | ||||
|     "printf '%s\n' ${toString (collect (x: x ? outPath) pkgs)} > $out"; | ||||
| 
 | ||||
|   bscPkgs = { | ||||
|   mkStrict = drv: if (isDerivation drv && drv ? overrideAttrs && !(drv ? strictDeps)) | ||||
|     then drv.overrideAttrs { strictDeps = true; } | ||||
|     else drv; | ||||
| 
 | ||||
|   bscPkgs = mapAttrs (_: mkStrict) { | ||||
|     bench6 = callPackage ./pkgs/bench6/default.nix { }; | ||||
|     bigotes = callPackage ./pkgs/bigotes/default.nix { }; | ||||
|     clangOmpss2 = callPackage ./pkgs/llvm-ompss2/default.nix { }; | ||||
|  | ||||
		Reference in New Issue
	
	Block a user