{ buildNpmPackage, fetchFromGitHub, lib, }: buildNpmPackage rec { pname = "hiccup"; version = "0.5.0"; src = fetchFromGitHub { owner = "ashwin-pc"; repo = pname; rev = "v${version}"; hash = "sha256-krtV//cVBt3EFzVZy9e55LJokDBSsr1xdNTKNOFFxbM="; }; npmDepsHash = "sha256-zxpimQtX03/+0/DgeQEDia82LAd14R4HcGFgASLevHE="; CYPRESS_INSTALL_BINARY = "0"; installPhase = '' runHook preInstall mv build $out runHook postInstall ''; meta = with lib; { description = "A static start page to get to your most important links"; inherit (finalAttrs.src.meta) homepage; license = licenses.mit; maintainers = with maintainers; [ azahi ]; }; }