From 235ad6650bab028861b6628ee048784943b969a4 Mon Sep 17 00:00:00 2001 From: Ota Mares <1375307+omares@users.noreply.github.com> Date: Sat, 10 Jan 2026 12:24:44 +0100 Subject: [PATCH] evcc: 0.211.1 -> 0.300.3 Diff: https://github.com/evcc-io/evcc/compare/0.211.1...0.300.3 Changelogs: - 0.300.3 https://github.com/evcc-io/evcc/releases/tag/0.300.3 - 0.300.2 https://github.com/evcc-io/evcc/releases/tag/0.300.2 - 0.300.1 https://github.com/evcc-io/evcc/releases/tag/0.300.1 - 0.300.0 https://github.com/evcc-io/evcc/releases/tag/0.300.0 --- pkgs/by-name/ev/evcc/package.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/by-name/ev/evcc/package.nix b/pkgs/by-name/ev/evcc/package.nix index 719aacfe066f..24d85db6de45 100644 --- a/pkgs/by-name/ev/evcc/package.nix +++ b/pkgs/by-name/ev/evcc/package.nix @@ -17,16 +17,16 @@ }: let - version = "0.211.1"; + version = "0.300.3"; src = fetchFromGitHub { owner = "evcc-io"; repo = "evcc"; tag = version; - hash = "sha256-taDgpuM3GbqD+v9sNXvJYiJLE1wvXzS/ILZgAGFUuw4="; + hash = "sha256-SGTsM4zZAuh/OGpMXvphHdlcCl1hOOYTn0R1k0/2qQo="; }; - vendorHash = "sha256-VG1/6KadRC4jLBIOL39M6l8ZED1KLb+wKGHNQowAV1g="; + vendorHash = "sha256-S23rTyg+QClky0vWfRl5nnd+2cYnHMGXmxZwLoTxUu0="; commonMeta = { license = lib.licenses.mit; @@ -52,7 +52,7 @@ buildGo125Module rec { npmDeps = fetchNpmDeps { inherit src; - hash = "sha256-vDMDyMEf6kWn1UFHvzmIxnY/ofh6YwwVFlCeKExfEy4="; + hash = "sha256-AXsF0rkaf6giDhJT2f/MMyCd6Ozgepx8do7fpl/CyNs="; }; nativeBuildInputs = [ @@ -72,7 +72,7 @@ buildGo125Module rec { ]; preBuild = '' - make assets + GOFLAGS="-mod=mod" make assets ''; };