Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
580 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
callPackage,
buildNpmPackage,
imagemagick,
}:
let
common = callPackage ./common.nix { };
in
buildNpmPackage {
inherit (common) pname version src;
npmDepsHash = "sha256-5ilhuFaIvksXsJmNu20m8MV3hYtyPUz4zp8NIvhR5Nw=";
nativeBuildInputs = [ imagemagick ];
postInstall = ''
cp -r priv/static $out/static
'';
meta = with lib; {
description = "Frontend for the Mobilizon server";
homepage = "https://joinmobilizon.org/";
license = licenses.agpl3Plus;
maintainers = with maintainers; [
minijackson
erictapen
];
};
}