Skip to content

Commit 93d9da3

Browse files
committed
sdks: Add 1.0.1
- Add SDK version 1.0.1 with SHA256 hashes - Add "1_0" alias pointing to the latest 1.0.x release - Update latest to point to 1.0.1
1 parent 143f369 commit 93d9da3

2 files changed

Lines changed: 170 additions & 1 deletion

File tree

default.nix

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ lib.makeScope newScope (self: let
1515
mkSdk = version: args: callPackage (import ./sdk.nix (lib.importJSON ./sdks/${version}.json)) args;
1616

1717
sdks = lib.fix (self: {
18+
"1_0_1" = mkSdk "1_0_1" {
19+
python3 = python310;
20+
};
1821
"1_0_0" = mkSdk "1_0_0" {
1922
python3 = python310;
2023
};
@@ -24,7 +27,8 @@ lib.makeScope newScope (self: let
2427
"0_16" = mkSdk "0_16" {
2528
python3 = python310;
2629
};
27-
latest = self."1_0_0";
30+
"1_0" = self."1_0_1";
31+
latest = self."1_0_1";
2832
});
2933

3034
in {

0 commit comments

Comments
 (0)