mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 01:33:10 +00:00
66 lines
1.4 KiB
Nix
66 lines
1.4 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, fetchYarnDeps
|
|
, mkYarnPackage
|
|
, baseUrl ? null
|
|
}:
|
|
|
|
mkYarnPackage rec {
|
|
pname = "synapse-admin";
|
|
version = "0.8.7";
|
|
src = fetchFromGitHub {
|
|
owner = "Awesome-Technologies";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-kvQBzrCu1sgDccKhr0i2DgDmO5z6u6s+vw5KymttoK4=";
|
|
};
|
|
|
|
yarnLock = ./yarn.lock;
|
|
packageJSON = ./package.json;
|
|
|
|
offlineCache = fetchYarnDeps {
|
|
inherit yarnLock;
|
|
hash = "sha256-f0ilsF3lA+134qUaX96mdntjpR4gRlmtRIh/xEFhtXQ=";
|
|
};
|
|
|
|
NODE_ENV = "production";
|
|
${if baseUrl != null then "REACT_APP_SERVER" else null} = baseUrl;
|
|
|
|
# error:0308010C:digital envelope routines::unsupported
|
|
NODE_OPTIONS = "--openssl-legacy-provider";
|
|
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
|
|
export HOME=$(mktemp -d)
|
|
pushd deps/synapse-admin
|
|
mv node_modules node_modules.bak
|
|
cp -r $(readlink -f node_modules.bak) node_modules
|
|
chmod +w node_modules
|
|
yarn --offline run build
|
|
popd
|
|
|
|
runHook postBuild
|
|
'';
|
|
|
|
distPhase = ''
|
|
runHook preDist
|
|
|
|
mkdir -p $out
|
|
cp -r deps/synapse-admin/build/* $out
|
|
|
|
runHook postDist
|
|
'';
|
|
|
|
dontFixup = true;
|
|
dontInstall = true;
|
|
|
|
meta = with lib; {
|
|
description = "Admin UI for Synapse Homeservers";
|
|
homepage = "https://github.com/Awesome-Technologies/synapse-admin";
|
|
license = licenses.asl20;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ mkg20001 ma27 ];
|
|
};
|
|
}
|