home-assistant-custom-lovelace-modules.sankey-chart: init at 3.5.0 (#352636)

This commit is contained in:
Martin Weinelt 2024-10-31 22:29:26 +01:00 committed by GitHub
commit c48be101f1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 39 additions and 0 deletions

View File

@ -31,6 +31,8 @@
rmv-card = callPackage ./rmv-card { };
sankey-chart = callPackage ./sankey-chart { };
template-entity-row = callPackage ./template-entity-row { };
universal-remote-card = callPackage ./universal-remote-card { };

View File

@ -0,0 +1,37 @@
{
lib,
buildNpmPackage,
fetchFromGitHub,
}:
buildNpmPackage rec {
pname = "sankey-chart";
version = "3.5.0";
src = fetchFromGitHub {
owner = "MindFreeze";
repo = "ha-sankey-chart";
rev = "v${version}";
hash = "sha256-cQZPWyXMwJZAhsWYtNLGXpelvmeWlyQbaoqYREwfeNg=";
};
npmDepsHash = "sha256-GXhxMq0h/AmLGIiq2N/hSi+4O9uNDPawaSdPmJ8OyX8=";
installPhase = ''
runHook preInstall
mkdir $out/
cp -v dist/ha-sankey-chart.js $out/sankey-chart.js
runHook postInstall
'';
meta = {
description = "Home Assistant lovelace card to display a sankey chart.";
homepage = "https://github.com/MindFreeze/ha-sankey-chart";
changelog = "https://github.com/MindFreeze/ha-sankey-chart/blob/${src.rev}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ hexa ];
platforms = lib.platforms.all;
};
}