warpgate: 0.18.0 -> 0.19.0

Upstream fixed dependency issue, nodejs v22 still works fine, so removing the fix from npmFlags.
This commit is contained in:
Lemon Lam
2026-01-04 19:32:03 +08:00
parent af44686abb
commit 51d26cc134
+4 -6
View File
@@ -20,9 +20,7 @@ rustPlatform.buildRustPackage (
patches = [ ./web-ui-package-json.patch ];
npmDepsHash = "sha256-jgsNF93DkEVgPGzdi192HKoSHPYhdrtog28jZvOLK6E=";
# Fix peer dependency conflicts with ESLint 9.
npmFlags = [ "--legacy-peer-deps" ];
npmDepsHash = "sha256-bsVlE0uOJu3JRAn5Hjt2PUhpgJXbQBUKO+6nl0EZkyc=";
nativeBuildInputs = [ openapi-generator-cli ];
@@ -37,16 +35,16 @@ rustPlatform.buildRustPackage (
in
{
pname = "warpgate";
version = "0.18.0";
version = "0.19.0";
src = fetchFromGitHub {
owner = "warp-tech";
repo = "warpgate";
tag = "v${finalAttrs.version}";
hash = "sha256-GLY/VGEKB6gFNTbBlbhpmqQZ62pk2wd6JwWwy4Tz0FE=";
hash = "sha256-PBDAZDoCFwrO1/zfQwy1MOhDDx4xHHOSvKsIYk2ayM8=";
};
cargoHash = "sha256-hwAtj8tTDsYgzuDobMg97wepKKIpohSVClyRiaDd+8w=";
cargoHash = "sha256-8m2NznKIME1UywQxmaQm+TJhhro095oU0WM7JxIyMxU=";
patches = [
(replaceVars ./hardcode-version.patch { inherit (finalAttrs) version; })