Merge pull request #290049 from mweinelt/evcc-0.124.4

evcc: 0.124.0 -> 0.124.4
This commit is contained in:
Martin Weinelt 2024-02-20 02:18:42 +01:00 committed by GitHub
commit 251105f9e7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,9 +1,9 @@
{ lib { lib
, buildGoModule , buildGo122Module
, fetchFromGitHub , fetchFromGitHub
, fetchNpmDeps , fetchNpmDeps
, cacert , cacert
, go , go_1_22
, git , git
, enumer , enumer
, mockgen , mockgen
@ -14,22 +14,27 @@
, stdenv , stdenv
}: }:
let
buildGoModule = buildGo122Module;
go = go_1_22;
in
buildGoModule rec { buildGoModule rec {
pname = "evcc"; pname = "evcc";
version = "0.124.0"; version = "0.124.4";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "evcc-io"; owner = "evcc-io";
repo = "evcc"; repo = "evcc";
rev = version; rev = version;
hash = "sha256-x6BsW4INahGFbFNprE1mZjlW/EoEMZgDIJACd9F+g6A="; hash = "sha256-sSR0aRSIUPph1YGfY6ihUffKiyauSbO7eUSVa3jaY6s=";
}; };
vendorHash = "sha256-/TlbjyKGpVqkQAStx8QaAxpWsVYs0yxBMantqelYkhw="; vendorHash = "sha256-1ZSMI6mz8CkibP3KwWJ3I05BMoBu9r+Fn8vLLDTpVfA=";
npmDeps = fetchNpmDeps { npmDeps = fetchNpmDeps {
inherit src; inherit src;
hash = "sha256-Tl08gscv8WaMG4XfIVUWqj76xICWwUTBDK0VSs2kwMk="; hash = "sha256-Uu1idwI3zRQmu2xBrbMcFBmJuO/z+N5+6eSRK+n1pg8=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [