lol

evcc: 0.207.2 -> 0.207.3 (#434079)

authored by

Martin Weinelt and committed by
GitHub
6d2889c3 4ff7ee96

+7 -7
+7 -7
pkgs/by-name/ev/evcc/package.nix
··· 1 1 { 2 2 lib, 3 3 stdenv, 4 - buildGo124Module, 4 + buildGo125Module, 5 5 fetchFromGitHub, 6 6 fetchNpmDeps, 7 7 cacert, 8 8 git, 9 - go_1_24, 9 + go_1_25, 10 10 gokrazy, 11 11 enumer, 12 12 mockgen, ··· 17 17 }: 18 18 19 19 let 20 - version = "0.207.2"; 20 + version = "0.207.3"; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = "evcc-io"; 24 24 repo = "evcc"; 25 25 tag = version; 26 - hash = "sha256-bBW2HU2TijUC6pn3gH23JTTGy5BWSm+V6BBsiYqi6U0="; 26 + hash = "sha256-BXfYtz8aZt8NmBAe5/oViDG7k0y4dc08C9frV4NkVgw="; 27 27 }; 28 28 29 29 vendorHash = "sha256-VITdJ23xrO346EOlNe5uoOKcsQ76x+Yb7Vhl0/H+WTI="; ··· 33 33 maintainers = with maintainers; [ hexa ]; 34 34 }; 35 35 36 - decorate = buildGo124Module { 36 + decorate = buildGo125Module { 37 37 pname = "evcc-decorate"; 38 38 inherit version src vendorHash; 39 39 ··· 46 46 }; 47 47 in 48 48 49 - buildGo124Module rec { 49 + buildGo125Module rec { 50 50 pname = "evcc"; 51 51 inherit version src vendorHash; 52 52 ··· 64 64 nativeBuildInputs = [ 65 65 decorate 66 66 enumer 67 - go_1_24 67 + go_1_25 68 68 gokrazy 69 69 git 70 70 cacert