{ lib , buildNpmPackage , fetchFromGitHub }: buildNpmPackage rec { pname = "mushroom"; version = "3.4.2"; src = fetchFromGitHub { owner = "piitaya"; repo = "lovelace-mushroom"; rev = "v${version}"; hash = "sha256-OUcOCBLEU8V+eadHuyA6F0uT8fJLRe1Xd9/X5ULCZVc="; }; npmDepsHash = "sha256-oIee6iJ18EBztje1aw4xzWa1wSIbgau4q0MyVx0T41I="; installPhase = '' runHook preInstall mkdir $out install -m0644 dist/mushroom.js $out runHook postInstall ''; meta = with lib; { changelog = "https://github.com/piitaya/lovelace-mushroom/releases/tag/v${version}"; description = "Mushroom Cards - Build a beautiful dashboard easily"; homepage = "https://github.com/piitaya/lovelace-mushroom"; license = licenses.asl20; maintainers = with maintainers; [ hexa ]; }; }