evcc: 0.207.2 -> 0.207.3

https://github.com/evcc-io/evcc/releases/tag/0.207.3
This commit is contained in:
Martin Weinelt 2025-08-15 23:17:04 +02:00
parent c97fad5765
commit 8b3d87a5ef
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -1,12 +1,12 @@
{
lib,
stdenv,
buildGo124Module,
buildGo125Module,
fetchFromGitHub,
fetchNpmDeps,
cacert,
git,
go_1_24,
go_1_25,
gokrazy,
enumer,
mockgen,
@ -17,13 +17,13 @@
}:
let
version = "0.207.2";
version = "0.207.3";
src = fetchFromGitHub {
owner = "evcc-io";
repo = "evcc";
tag = version;
hash = "sha256-bBW2HU2TijUC6pn3gH23JTTGy5BWSm+V6BBsiYqi6U0=";
hash = "sha256-BXfYtz8aZt8NmBAe5/oViDG7k0y4dc08C9frV4NkVgw=";
};
vendorHash = "sha256-VITdJ23xrO346EOlNe5uoOKcsQ76x+Yb7Vhl0/H+WTI=";
@ -33,7 +33,7 @@ let
maintainers = with maintainers; [ hexa ];
};
decorate = buildGo124Module {
decorate = buildGo125Module {
pname = "evcc-decorate";
inherit version src vendorHash;
@ -46,7 +46,7 @@ let
};
in
buildGo124Module rec {
buildGo125Module rec {
pname = "evcc";
inherit version src vendorHash;
@ -64,7 +64,7 @@ buildGo124Module rec {
nativeBuildInputs = [
decorate
enumer
go_1_24
go_1_25
gokrazy
git
cacert