about summary refs log tree commit diff
path: root/pkgs/servers/home-assistant/custom-lovelace-modules/valetudo-map-card/default.nix
blob: 3203c59e7cd9f89adfdd7bafc4c6c0be76412ce2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{ lib
, buildNpmPackage
, fetchFromGitHub
}:

buildNpmPackage rec {
  pname = "lovelace-valetudo-map-card";
  version = "2023.04.0";

  src = fetchFromGitHub {
    owner = "Hypfer";
    repo = "lovelace-valetudo-map-card";
    rev = "v${version}";
    hash = "sha256-owOIbA1tRlnbWJ/p/wAUpeDnz/Wzu+GmUammJ6VFxHc=";
  };

  patches = [ ./remove-git-dependency.patch ];

  npmDepsHash = "sha256-xHHbOt9HW+zJAhHEDy2V5eYyLv4e3OrUbnzqeJasSng=";

  installPhase = ''
    runHook preInstall

    mkdir $out
    cp dist/valetudo-map-card.js $out

    runHook postInstall
  '';

  passthru.entrypoint = "valetudo-map-card.js";

  meta = with lib; {
    description = "Display the map from a valetudo-enabled robot in a home assistant dashboard card";
    homepage = "https://github.com/Hypfer/lovelace-valetudo-map-card";
    license = licenses.mit;
    maintainers = with maintainers; [ k900 ];
    platforms = platforms.all;
  };
}