about summary refs log tree commit diff
path: root/nixpkgs/pkgs/servers/mobilizon/frontend.nix
blob: 220138c33406ab0c900d983abfda0564f10889c9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{ lib, callPackage, mkYarnPackage, fetchYarnDeps, imagemagick }:

let
  common = callPackage ./common.nix { };
in
mkYarnPackage rec {
  src = "${common.src}/js";

  offlineCache = fetchYarnDeps {
    yarnLock = src + "/yarn.lock";
    sha256 = "sha256-VkJ6vBt9EFoQVMWMV8FhPJBHcLJDDfOxd+NLb+DZy3U=";
  };

  packageJSON = ./package.json;

  # Somehow $out/deps/mobilizon/node_modules ends up only containing nothing
  # more than a .bin directory otherwise.
  yarnPostBuild = ''
    rm -rf $out/deps/mobilizon/node_modules
    ln -s $out/node_modules $out/deps/mobilizon/node_modules
  '';

  buildPhase = ''
    runHook preBuild

    yarn run build

    runHook postBuild
  '';

  doCheck = true;
  checkPhase = "yarn run test";

  nativeBuildInputs = [ imagemagick ];

  meta = with lib; {
    description = "Frontend for the Mobilizon server";
    homepage = "https://joinmobilizon.org/";
    license = licenses.agpl3Plus;
    maintainers = with maintainers; [ minijackson erictapen ];
  };
}