We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 143f369 commit 93d9da3Copy full SHA for 93d9da3
2 files changed
default.nix
@@ -15,6 +15,9 @@ lib.makeScope newScope (self: let
15
mkSdk = version: args: callPackage (import ./sdk.nix (lib.importJSON ./sdks/${version}.json)) args;
16
17
sdks = lib.fix (self: {
18
+ "1_0_1" = mkSdk "1_0_1" {
19
+ python3 = python310;
20
+ };
21
"1_0_0" = mkSdk "1_0_0" {
22
python3 = python310;
23
};
@@ -24,7 +27,8 @@ lib.makeScope newScope (self: let
24
27
"0_16" = mkSdk "0_16" {
25
28
26
29
- latest = self."1_0_0";
30
+ "1_0" = self."1_0_1";
31
+ latest = self."1_0_1";
32
});
33
34
in {
0 commit comments