NixOS-Config/pkgs/phanpy/default.nix

37 lines
902 B
Nix
Raw Normal View History

2024-04-05 23:04:59 +02:00
{
lib,
buildNpmPackage,
fetchFromGitHub,
}:
buildNpmPackage rec {
pname = "phanpy";
2024-04-22 00:23:03 +02:00
version = "2024.04.19.5145730";
2024-04-05 23:04:59 +02:00
src = fetchFromGitHub {
owner = "cheeaun";
repo = pname;
2024-04-05 23:27:10 +02:00
rev = "${version}";
2024-04-22 00:25:34 +02:00
hash = "sha256-+/VtvDYBRy5Y6ZmqNH3id4hph1p3323G2zeE1bqfT1Y=";
2024-04-05 23:04:59 +02:00
};
2024-04-22 00:26:49 +02:00
npmDepsHash = "sha256-9tcZ3jQg+mHeI2K/dNFs0C1k7CfHwxbx+/+I8pdO/wQ=";
2024-04-05 23:04:59 +02:00
# The prepack script runs the build script, which we'd rather do in the build phase.
npmPackFlags = ["--ignore-scripts"];
installPhase = ''
export PHANPY_CLIENT_NAME="Phanpy on gladtherescake.eu"
export PHANPY_WEBSITE="phanpy.gladtherescake.eu"
mkdir $out
npm run build
2024-04-06 16:10:08 +02:00
cp -r dist/* $out
'';
2024-04-05 23:04:59 +02:00
meta = with lib; {
description = "Minimalistic opinionated Mastodon web client.";
homepage = "https://phanpy.social/";
license = licenses.mit;
maintainers = with maintainers; [Lillian-Violet];
};
}