mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
45 lines
1 KiB
Nix
45 lines
1 KiB
Nix
{
|
|
lib,
|
|
buildNpmPackage,
|
|
fetchFromGitHub,
|
|
nodejs,
|
|
python3,
|
|
nix-update-script,
|
|
}:
|
|
|
|
buildNpmPackage rec {
|
|
pname = "jitsi-excalidraw-backend";
|
|
version = "21";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jitsi";
|
|
repo = "excalidraw-backend";
|
|
rev = "x${version}";
|
|
hash = "sha256-52LU5I2pNjSb9+nJjiczp/dLWRTwQDC+thyGXBvkBBA=";
|
|
};
|
|
|
|
npmDepsHash = "sha256-BJqjaqTeg5i+ECGMuiBYVToK2i2XCOVP9yeDFz6nP4k=";
|
|
|
|
nativeBuildInputs = [ python3 ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/share
|
|
cp -r {node_modules,dist} $out/share
|
|
'';
|
|
|
|
postFixup = ''
|
|
makeWrapper ${nodejs}/bin/node $out/bin/jitsi-excalidraw-backend \
|
|
--add-flags dist/index.js \
|
|
--chdir $out/share
|
|
'';
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = with lib; {
|
|
description = "Excalidraw collaboration backend for Jitsi";
|
|
homepage = "https://github.com/jitsi/excalidraw-backend";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ camillemndn ];
|
|
mainProgram = "jitsi-excalidraw-backend";
|
|
};
|
|
}
|