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