mobilizon/js/default.nix

32 lines
666 B
Nix
Raw Normal View History

2023-08-09 15:22:49 +02:00
{ lib, yarn, mkYarnPackage, imagemagick}:
mkYarnPackage rec {
2023-08-03 17:26:07 +02:00
src = ./.;
packageJSON = ./package.json;
yarnLock = ./yarn.lock;
yarnNix = ./yarn.nix;
buildPhase = ''
runHook preBuild
# Tests cannot find the functions of the testing framework
rm -r ./deps/mobilizon/tests
yarn run build
runHook postBuild
'';
# doCheck = true;
# checkPhase = "yarn test:unit";
nativeBuildInputs = [ imagemagick ];
meta = with lib; {
description = "Frontend for the Mobilizon server";
homepage = "https://joinmobilizon.org/";
license = licenses.agpl3Plus;
maintainers = with maintainers; [ minijackson erictapen ];
};
}