97 lines
1.7 KiB
Nix
97 lines
1.7 KiB
Nix
|
{ lib
|
||
|
, stdenv
|
||
|
, buildGoModule
|
||
|
, fetchFromGitHub
|
||
|
, fetchNpmDeps
|
||
|
, cacert
|
||
|
, git
|
||
|
, go
|
||
|
, enumer
|
||
|
, mockgen
|
||
|
, nodejs
|
||
|
, npmHooks
|
||
|
, nix-update-script
|
||
|
, nixosTests
|
||
|
}:
|
||
|
|
||
|
buildGoModule rec {
|
||
|
pname = "evcc";
|
||
|
version = "0.131.4";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "evcc-io";
|
||
|
repo = "evcc";
|
||
|
rev = version;
|
||
|
hash = "sha256-sU5h29sXz1am44iFGNrVfMzrI1aAc/m355Aevm81sQc=";
|
||
|
};
|
||
|
|
||
|
vendorHash = "sha256-hPCTAK4u79r9EoHkv6g1QvkRDZ95hXzyiiQpRD+0aLQ=";
|
||
|
|
||
|
npmDeps = fetchNpmDeps {
|
||
|
inherit src;
|
||
|
hash = "sha256-4PBlN2pbr7dzZNQzh/P0kBlsg6ut2XPwsfFB132hWO0=";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
nodejs
|
||
|
npmHooks.npmConfigHook
|
||
|
];
|
||
|
|
||
|
overrideModAttrs = _: {
|
||
|
nativeBuildInputs = [
|
||
|
enumer
|
||
|
go
|
||
|
git
|
||
|
cacert
|
||
|
mockgen
|
||
|
];
|
||
|
|
||
|
preBuild = ''
|
||
|
make assets
|
||
|
'';
|
||
|
};
|
||
|
|
||
|
tags = [
|
||
|
"release"
|
||
|
"test"
|
||
|
];
|
||
|
|
||
|
ldflags = [
|
||
|
"-X github.com/evcc-io/evcc/server.Version=${version}"
|
||
|
"-X github.com/evcc-io/evcc/server.Commit=${src.rev}"
|
||
|
"-s"
|
||
|
"-w"
|
||
|
];
|
||
|
|
||
|
preBuild = ''
|
||
|
make ui
|
||
|
'';
|
||
|
|
||
|
doCheck = !stdenv.hostPlatform.isDarwin; # darwin sandbox limitations around network access, access to /etc/protocols and likely more
|
||
|
|
||
|
checkFlags = let
|
||
|
skippedTests = [
|
||
|
# network access
|
||
|
"TestOctopusConfigParse"
|
||
|
"TestTemplates"
|
||
|
"TestOcpp"
|
||
|
];
|
||
|
in
|
||
|
[ "-skip=^${lib.concatStringsSep "$|^" skippedTests}$" ];
|
||
|
|
||
|
passthru = {
|
||
|
tests = {
|
||
|
inherit (nixosTests) evcc;
|
||
|
};
|
||
|
updateScript = nix-update-script { };
|
||
|
};
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "EV Charge Controller";
|
||
|
homepage = "https://evcc.io";
|
||
|
changelog = "https://github.com/evcc-io/evcc/releases/tag/${version}";
|
||
|
license = licenses.mit;
|
||
|
maintainers = with maintainers; [ hexa ];
|
||
|
};
|
||
|
}
|