97 lines
1.6 KiB
Nix
97 lines
1.6 KiB
Nix
|
{ lib
|
||
|
, buildGoModule
|
||
|
, fetchFromGitHub
|
||
|
, fetchNpmDeps
|
||
|
, cacert
|
||
|
, go
|
||
|
, git
|
||
|
, enumer
|
||
|
, mockgen
|
||
|
, nodejs
|
||
|
, npmHooks
|
||
|
, nix-update-script
|
||
|
, nixosTests
|
||
|
, stdenv
|
||
|
}:
|
||
|
|
||
|
buildGoModule rec {
|
||
|
pname = "evcc";
|
||
|
version = "0.108.0";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "evcc-io";
|
||
|
repo = pname;
|
||
|
rev = version;
|
||
|
hash = "sha256-KCR001MbaAuzNsL8lXIMkfliWviGFVroaQWYBruXUTY=";
|
||
|
};
|
||
|
|
||
|
vendorHash = "sha256-10W1BNHcdP77m7lJ/mc+jQeUigoUid3K0wI4bUm5y+s=";
|
||
|
|
||
|
npmDeps = fetchNpmDeps {
|
||
|
inherit src;
|
||
|
hash = "sha256-+l5LuxJAjrTvOL5XEQ4OIktdupSpn6IqrNX5x4MRmNw=";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
nodejs
|
||
|
npmHooks.npmConfigHook
|
||
|
];
|
||
|
|
||
|
overrideModAttrs = _: {
|
||
|
nativeBuildInputs = [
|
||
|
enumer
|
||
|
go
|
||
|
git
|
||
|
cacert
|
||
|
mockgen
|
||
|
];
|
||
|
|
||
|
preBuild = ''
|
||
|
make assets
|
||
|
'';
|
||
|
};
|
||
|
|
||
|
tags = [
|
||
|
"release"
|
||
|
];
|
||
|
|
||
|
ldflags = [
|
||
|
"-X github.com/evcc-io/evcc/server.Version=${version}"
|
||
|
"-X github.com/evcc-io/evcc/server.Commit=${src.rev}"
|
||
|
"-s"
|
||
|
"-w"
|
||
|
];
|
||
|
|
||
|
npmInstallFlags = [
|
||
|
"--legacy-peer-deps"
|
||
|
];
|
||
|
|
||
|
preBuild = ''
|
||
|
make ui
|
||
|
'';
|
||
|
|
||
|
doCheck = !stdenv.isDarwin; # tries to bind to local network, doesn't work in darwin sandbox
|
||
|
|
||
|
preCheck = ''
|
||
|
# requires network access
|
||
|
rm meter/template_test.go
|
||
|
'';
|
||
|
|
||
|
passthru = {
|
||
|
tests = {
|
||
|
inherit (nixosTests) evcc;
|
||
|
};
|
||
|
updateScript = nix-update-script {
|
||
|
attrPath = pname;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "EV Charge Controller";
|
||
|
homepage = "https://evcc.io";
|
||
|
changelog = "https://github.com/andig/evcc/releases/tag/${version}";
|
||
|
license = licenses.mit;
|
||
|
maintainers = with maintainers; [ hexa ];
|
||
|
};
|
||
|
}
|