teleport_16: 16.4.17 -> 16.4.18; teleport_17: 17.3.3 -> 17.4.0 (#392197)

This commit is contained in:
tomberek
2025-03-28 17:18:26 -04:00
committed by GitHub
3 changed files with 24 additions and 15 deletions
+5 -5
View File
@@ -2,10 +2,10 @@ args:
import ../generic.nix (
args
// {
version = "16.4.17";
hash = "sha256-NLWISsh0zoTn849VK5YL2zxp7zuu7xFqLdbP/cPeNFc=";
vendorHash = "sha256-OoGx3ae69NCY6OFs/Ez4Lc8NVcgxl4bRoicFAVHicdQ=";
pnpmHash = "sha256-OpCUYn69UNs6cplM74oNO4hQ5wiYBbjqGN3bJfbrsqk=";
cargoHash = "sha256-oavJSszi6uWfUIzD+wRZL3wAFgmPvFwGeNHZexOlup4=";
version = "16.4.18";
hash = "sha256-DpbRfWVsfGpIANs6LMtIPtgsCEt5UMoNBpqelMQF+7s=";
vendorHash = "sha256-H7EIt9HImdjSQMCv0Jr4mx3woMA6ZSR7KMpQbKvggZU=";
pnpmHash = "sha256-LHdX7Vo4neaN+SNrh/De3n/0mR6ZgGvJzNKcxOOHpZA=";
cargoHash = "sha256-NASNBk4QVoqe2cz4l94aXo6pUtF8Qxwb61XRI/ErjTs=";
}
)
+5 -5
View File
@@ -2,10 +2,10 @@
import ../generic.nix (
args
// {
version = "17.3.3";
hash = "sha256-COvVkZN0ekuFEeCmFChHRiGS6ILtYAG4VM98DOKnnFc=";
vendorHash = "sha256-JO7wDDQLK9NE8OZla0VT/EKMV6YvdImoJWZPten42Z8=";
pnpmHash = "sha256-74hX508HQDEx6iWe1LHALBL8xwwgeDXGHog5RHFBud8=";
cargoHash = "sha256-FiPfeDnb/FTemE1ZO2Ydg2KUjNmw7U3SCNu6cOqalOM=";
version = "17.4.0";
hash = "sha256-O/JMv757DcO7x8Lh5cMeoa1GPvtQETxUlW2meMSSoM0=";
vendorHash = "sha256-C2YpZr9baUUE3pPHXNCIppujYQkioC9DWzSqeigmzmE=";
pnpmHash = "sha256-Hh4R+mkJJp9CR4NHw+VFzLPxb7e9T1BQkey0in2t934=";
cargoHash = "sha256-0PT9y56V/WHo3M5TcpVWBuHcQMZ0w2L4rEuXuTvVNFU=";
}
)
+14 -5
View File
@@ -15,6 +15,7 @@
openssl,
pkg-config,
pnpm_9,
pnpm_10,
rustc,
Security,
stdenv,
@@ -91,10 +92,16 @@ let
pnpmDeps =
if pnpmHash != null then
pnpm_9.fetchDeps {
inherit src pname version;
hash = pnpmHash;
}
if lib.versionAtLeast version "17" then
pnpm_10.fetchDeps {
inherit src pname version;
hash = pnpmHash;
}
else
pnpm_9.fetchDeps {
inherit src pname version;
hash = pnpmHash;
}
else
null;
@@ -111,7 +118,9 @@ let
wasm-pack
]
++ (
if lib.versionAtLeast version "16" then
if lib.versionAtLeast version "17" then
[ pnpm_10.configHook ]
else if lib.versionAtLeast version "16" then
[ pnpm_9.configHook ]
else
[