Martin Weinelt 2023-09-13 12:25:44 +02:00
parent 937ea26c6e
commit 6201b0ec9f
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759
2 changed files with 9 additions and 7 deletions

View File

@ -1,5 +1,5 @@
{ lib
, buildGoModule
, buildGo121Module
, fetchFromGitHub
, fetchNpmDeps
, cacert
@ -14,22 +14,22 @@
, stdenv
}:
buildGoModule rec {
buildGo121Module rec {
pname = "evcc";
version = "0.118.11";
version = "0.120.1";
src = fetchFromGitHub {
owner = "evcc-io";
repo = pname;
rev = version;
hash = "sha256-gwFArZJX3DBUNaSpWD5n76VImWeDImR8b1s2czBrBaA=";
hash = "sha256-mifpswB8hA7Ke2r2afYRlGDdhbz7AYxMZBNaRQvUodQ=";
};
vendorHash = "sha256-0NTOit1nhX/zxQjHwU7ZOY1GsoIu959/KICCEWyfIQ4=";
vendorHash = "sha256-LNMNqlb/aj+ZHuwMvtK//oWyi34mm47ShAAD427szS4=";
npmDeps = fetchNpmDeps {
inherit src;
hash = "sha256-/zpyU7x3cdmKrS7YiMe2BVJm0AC0P+yspiG9C3dMVAk=";
hash = "sha256-quznAvgAFJJnKabsFZxAu7yDkAuvujg6of6En8JaFs4=";
};
nativeBuildInputs = [

View File

@ -7986,7 +7986,9 @@ with pkgs;
ettercap = callPackage ../applications/networking/sniffers/ettercap { };
evcc = callPackage ../servers/home-automation/evcc { };
evcc = callPackage ../servers/home-automation/evcc {
go = go_1_21;
};
eventstat = callPackage ../os-specific/linux/eventstat { };