home-assistant-custom-lovelace-modules.sankey-chart: init at 3.5.0 (#352636)
This commit is contained in:
commit
c48be101f1
@ -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 { };
|
||||
|
@ -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;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user