{ lib , buildNpmPackage , fetchFromGitHub }: buildNpmPackage rec { pname = "mushroom"; version = "3.5.4"; src = fetchFromGitHub { owner = "piitaya"; repo = "lovelace-mushroom"; rev = "v${version}"; hash = "sha256-ppEXgVrB7C5ZrNmYyXdrnQMbTNU5rTGherNlimMqImM="; }; npmDepsHash = "sha256-4B295Wc4tj+Rhse4521sCGNv/WMrNImxZwtTFkFp14c="; 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 ]; }; }