about summary refs log tree commit diff
path: root/pkgs/servers/home-assistant
diff options
context:
space:
mode:
authorMartin Weinelt <mweinelt@users.noreply.github.com>2023-12-06 04:21:58 +0100
committerGitHub <noreply@github.com>2023-12-06 04:21:58 +0100
commit80b0a35868f44f42d724fe059503c684a4e101b9 (patch)
treea98fe886886561b9764b4dc5930a92856f61926b /pkgs/servers/home-assistant
parent17c08296e3dc92ed6030d2599b01b6aca1d492c7 (diff)
parent4913d1753f493450df07f2cc954c041c0d7b8c5a (diff)
downloadnixlib-80b0a35868f44f42d724fe059503c684a4e101b9.tar
nixlib-80b0a35868f44f42d724fe059503c684a4e101b9.tar.gz
nixlib-80b0a35868f44f42d724fe059503c684a4e101b9.tar.bz2
nixlib-80b0a35868f44f42d724fe059503c684a4e101b9.tar.lz
nixlib-80b0a35868f44f42d724fe059503c684a4e101b9.tar.xz
nixlib-80b0a35868f44f42d724fe059503c684a4e101b9.tar.zst
nixlib-80b0a35868f44f42d724fe059503c684a4e101b9.zip
Merge pull request #271788 from SuperSandro2000/light-entity-card
home-assistant-custom-lovelace-modules.light-entity-card: init at 6.1.0
Diffstat (limited to 'pkgs/servers/home-assistant')
-rw-r--r--pkgs/servers/home-assistant/custom-lovelace-modules/default.nix2
-rw-r--r--pkgs/servers/home-assistant/custom-lovelace-modules/light-entity-card/default.nix39
2 files changed, 41 insertions, 0 deletions
diff --git a/pkgs/servers/home-assistant/custom-lovelace-modules/default.nix b/pkgs/servers/home-assistant/custom-lovelace-modules/default.nix
index 4bb1e63b5f7f..848e6062451a 100644
--- a/pkgs/servers/home-assistant/custom-lovelace-modules/default.nix
+++ b/pkgs/servers/home-assistant/custom-lovelace-modules/default.nix
@@ -2,6 +2,8 @@
 }:
 
 {
+  light-entity-card = callPackage ./light-entity-card { };
+
   mini-graph-card = callPackage ./mini-graph-card {};
 
   mini-media-player = callPackage ./mini-media-player {};
diff --git a/pkgs/servers/home-assistant/custom-lovelace-modules/light-entity-card/default.nix b/pkgs/servers/home-assistant/custom-lovelace-modules/light-entity-card/default.nix
new file mode 100644
index 000000000000..0cdf9ee1677e
--- /dev/null
+++ b/pkgs/servers/home-assistant/custom-lovelace-modules/light-entity-card/default.nix
@@ -0,0 +1,39 @@
+{ lib
+, buildNpmPackage
+, fetchFromGitHub
+}:
+
+buildNpmPackage rec {
+  pname = "light-entity-card";
+  version = "6.1.0";
+
+  src = fetchFromGitHub {
+    owner = "ljmerza";
+    repo = "light-entity-card";
+    rev = "refs/tags/${version}";
+    hash = "sha256-CJpRvgPf7+v9m/8/O2R+nut3PnyDPC8OTipyE+Brp9U=";
+  };
+
+  npmDepsHash = "sha256-EZDTWtn3joikwiC5Kfn94+tXRDpBhMDHqHozfIkfbJ0=";
+
+  env.NODE_OPTIONS = "--openssl-legacy-provider";
+
+  installPhase = ''
+    runHook preInstall
+
+    mkdir $out
+    cp -v dist/light-entity-card.js* $out/
+
+    runHook postInstall
+  '';
+
+  passthru.entrypoint = "light-entity-card";
+
+  meta = with lib; {
+    description = "Control any light or switch entity";
+    homepage = "https://github.com/ljmerza/light-entity-card";
+    changelog = "https://github.com/ljmerza/light-entity-card/releases/tag/${version}";
+    maintainers = with maintainers; [ SuperSandro2000 ];
+    license = licenses.mit;
+  };
+}