42 lines
891 B
Nix
42 lines
891 B
Nix
{
|
|
lib,
|
|
buildNpmPackage,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildNpmPackage rec {
|
|
pname = "lovelace-auto-entities";
|
|
version = "v1.13.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "thomasloven";
|
|
repo = "lovelace-auto-entities";
|
|
rev = version;
|
|
hash = "sha256-ls8Jqt5SdiY5ROhtaSS4ZvoY+nHv6UB1RYApOJzC1VQ=";
|
|
};
|
|
|
|
npmDepsHash = "sha256-9z4YzLNxNh7I4yFxuPT3/erZO4itAiqyxL1a0pUTFRs=";
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir $out
|
|
cp ./auto-entities.js $out/
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
passthru.entrypoint = "auto-entities.js";
|
|
|
|
makeCacheWritable = true;
|
|
|
|
meta = with lib; {
|
|
description = "Automatically populate the entities-list of lovelace cards";
|
|
homepage = "https://github.com/thomasloven/lovelace-auto-entities";
|
|
license = licenses.mit;
|
|
maintainers = [ ];
|
|
mainProgram = "lovelace-auto-entities";
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|