3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/servers/home-automation/evcc/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

95 lines
1.6 KiB
Nix
Raw Normal View History

2021-07-25 09:59:01 +01:00
{ lib
, buildGoModule
, fetchFromGitHub
, fetchNpmDeps
, cacert
, go
, git
, enumer
, mockgen
, nodejs
, npmHooks
, nix-update-script
2021-07-27 14:14:24 +01:00
, nixosTests
2021-07-25 09:59:01 +01:00
, stdenv
}:
buildGoModule rec {
pname = "evcc";
version = "0.111.0";
2021-07-25 09:59:01 +01:00
src = fetchFromGitHub {
owner = "evcc-io";
repo = pname;
rev = version;
hash = "sha256-amXB4iLZJXJuU4gaTSpDc+kNoTVx08EUis0ld0XtcMs=";
2021-07-25 09:59:01 +01:00
};
vendorHash = "sha256-+qne/eB+z8e0vStC9V0w7jgWgo3vvkaR42dUe+/eXDE=";
2021-07-25 09:59:01 +01:00
npmDeps = fetchNpmDeps {
inherit src;
hash = "sha256-zrNfev2x5quuujifRHUufBK/GnR7QkCypHCyYb4nwkI=";
2021-07-25 09:59:01 +01:00
};
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 = {
2021-07-27 14:14:24 +01:00
tests = {
inherit (nixosTests) evcc;
};
updateScript = nix-update-script { };
2021-07-25 09:59:01 +01:00
};
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 ];
};
}