mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
Merge pull request #271123 from Mic92/pr/release-outpaths-
Eval fixes from release-attrpaths-superset.nix optimization (part 2)
This commit is contained in:
commit
10bd922e3c
@ -200,7 +200,9 @@ rec {
|
||||
# Only show the error for the first missing argument
|
||||
error = errorForArg missingArgs.${head (attrNames missingArgs)};
|
||||
|
||||
in if missingArgs == {} then makeOverridable f allArgs else abort error;
|
||||
in if missingArgs == {}
|
||||
then makeOverridable f allArgs
|
||||
else throw "lib.customisation.callPackageWith: ${error}";
|
||||
|
||||
|
||||
/* Like callPackage, but for a function that returns an attribute
|
||||
|
@ -108,7 +108,7 @@ let
|
||||
|
||||
# archNames :: List String
|
||||
# E.g. [ "Turing" "Ampere" ]
|
||||
archNames = lists.unique (builtins.map (cap: cudaComputeCapabilityToName.${cap}) cudaCapabilities);
|
||||
archNames = lists.unique (builtins.map (cap: cudaComputeCapabilityToName.${cap} or (throw "missing cuda compute capability")) cudaCapabilities);
|
||||
|
||||
# realArches :: List String
|
||||
# The real architectures are physical architectures supported by the CUDA version.
|
||||
|
@ -22,8 +22,8 @@ rec {
|
||||
type = "derivation";
|
||||
outPath = xcode + "/Contents/Developer/Platforms/${platform}.platform/Developer/SDKs/${platform}${version}.sdk";
|
||||
|
||||
platform = stdenv.targetPlatform.xcodePlatform;
|
||||
version = stdenv.targetPlatform.sdkVer;
|
||||
platform = stdenv.targetPlatform.xcodePlatform or "";
|
||||
version = stdenv.targetPlatform.sdkVer or "";
|
||||
};
|
||||
|
||||
binutils = wrapBintoolsWith {
|
||||
|
@ -1,7 +1,7 @@
|
||||
{ callPackage }:
|
||||
|
||||
rec {
|
||||
cuda-samplesPackages = callPackage ./cuda-samples { };
|
||||
cuda-samplesPackages = callPackage ./cuda-samples/generic.nix { };
|
||||
inherit (cuda-samplesPackages)
|
||||
cuda-samples_cudatoolkit_10
|
||||
cuda-samples_cudatoolkit_10_0
|
||||
@ -14,7 +14,7 @@ rec {
|
||||
cuda-samples_cudatoolkit_11_3
|
||||
cuda-samples_cudatoolkit_11_4;
|
||||
|
||||
cuda-library-samplesPackages = callPackage ./cuda-library-samples { };
|
||||
cuda-library-samplesPackages = callPackage ./cuda-library-samples/generic.nix { };
|
||||
inherit (cuda-library-samplesPackages)
|
||||
cuda-library-samples_cudatoolkit_10
|
||||
cuda-library-samples_cudatoolkit_10_1
|
||||
|
@ -38,7 +38,9 @@ in {
|
||||
|
||||
jdk-hotspot = callPackage package.jdk-hotspot {};
|
||||
jre-hotspot = callPackage package.jre-hotspot {};
|
||||
} // lib.optionalAttrs (package?jdk-openj9) {
|
||||
jdk-openj9 = callPackage package.jdk-openj9 {};
|
||||
} // lib.optionalAttrs (package?jre-openj9) {
|
||||
jre-openj9 = callPackage package.jre-openj9 {};
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user