add pvlog

This commit is contained in:
Kopatz
2025-11-21 19:00:02 +01:00
parent a50e69bbaa
commit 943584e20b
6 changed files with 108 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
{
buildGoModule,
stdenv,
pkgs,
lib,
...
}:
buildGoModule rec {
pname = "kop-pvlog";
version = "0.0.1";
src = fetchGit {
url = "gitolite@kopatz.dev:kop-pvlog.git";
ref = "master";
rev = "23828dfa1275aac2b31e16b5e3cfb452d56aeae6";
};
vendorHash = "sha256-8wYERVt3PIsKkarkwPu8Zy/Sdx43P6g2lz2xRfvTZ2E=";
meta = {
description = "Fronius Inverter data logger";
license = lib.licenses.gpl3;
};
}