mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 20:33:21 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
64 lines
1.3 KiB
Nix
64 lines
1.3 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, fetchYarnDeps
|
|
, mkYarnPackage
|
|
, baseUrl ? null
|
|
, writeShellScriptBin
|
|
}:
|
|
|
|
mkYarnPackage rec {
|
|
pname = "synapse-admin";
|
|
version = "0.10.0";
|
|
src = fetchFromGitHub {
|
|
owner = "Awesome-Technologies";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-3MC5PCEwYfZzJy9AW9nHTpvU49Lk6wbYC4Rcv9J9MEg=";
|
|
};
|
|
|
|
packageJSON = ./package.json;
|
|
|
|
offlineCache = fetchYarnDeps {
|
|
yarnLock = "${src}/yarn.lock";
|
|
hash = "sha256-vpCwPL1B+hbIaVSHtlkGjPAteu9BFNNmCTE66CSyFkg=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
(writeShellScriptBin "git" "echo ${version}")
|
|
];
|
|
|
|
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)
|
|
yarn --offline run build
|
|
|
|
runHook postBuild
|
|
'';
|
|
|
|
distPhase = ''
|
|
runHook preDist
|
|
|
|
cp -r deps/synapse-admin/dist $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 ];
|
|
};
|
|
}
|