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.

98 lines
1.6 KiB
Nix
Raw Normal View History

2021-07-25 08:59:01 +00:00
{ lib
, buildGo122Module
2021-07-25 08:59:01 +00:00
, fetchFromGitHub
, fetchNpmDeps
, cacert
, go_1_22
2021-07-25 08:59:01 +00:00
, git
, enumer
, mockgen
, nodejs
, npmHooks
, nix-update-script
2021-07-27 13:14:24 +00:00
, nixosTests
2021-07-25 08:59:01 +00:00
, stdenv
}:
let
buildGoModule = buildGo122Module;
go = go_1_22;
in
buildGoModule rec {
2021-07-25 08:59:01 +00:00
pname = "evcc";
2024-03-14 15:41:57 +00:00
version = "0.124.10";
2021-07-25 08:59:01 +00:00
src = fetchFromGitHub {
owner = "evcc-io";
repo = "evcc";
2021-07-25 08:59:01 +00:00
rev = version;
2024-03-14 15:41:57 +00:00
hash = "sha256-NbM8Uev2qIIS6WriP7QnVUumF29rZSOCavouPkPmYpE=";
2021-07-25 08:59:01 +00:00
};
vendorHash = "sha256-PZWMqv3R4Dq4cLtGNuvHCQ/GiYvlKJfSKEmBn0JYnb8=";
2021-07-25 08:59:01 +00:00
npmDeps = fetchNpmDeps {
inherit src;
hash = "sha256-FWnRZ/NI49QZj8Uv6IbHc8IPAh3F5u4S6hY64B8+Uvk=";
2021-07-25 08:59:01 +00:00
};
nativeBuildInputs = [
nodejs
npmHooks.npmConfigHook
];
overrideModAttrs = _: {
nativeBuildInputs = [
enumer
go
git
cacert
mockgen
];
preBuild = ''
make assets
'';
};
tags = [
"release"
"test"
2021-07-25 08:59:01 +00:00
];
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.isDarwin; # tries to bind to local network, doesn't work in darwin sandbox
preCheck = ''
# requires network access
rm meter/template_test.go
rm charger/template_test.go
2021-07-25 08:59:01 +00:00
'';
passthru = {
2021-07-27 13:14:24 +00:00
tests = {
inherit (nixosTests) evcc;
};
updateScript = nix-update-script { };
2021-07-25 08:59:01 +00:00
};
meta = with lib; {
description = "EV Charge Controller";
homepage = "https://evcc.io";
changelog = "https://github.com/evcc-io/evcc/releases/tag/${version}";
2021-07-25 08:59:01 +00:00
license = licenses.mit;
maintainers = with maintainers; [ hexa ];
};
}