84 lines
2.1 KiB
Nix
84 lines
2.1 KiB
Nix
{ stdenv
|
|
, lib
|
|
, fetchFromGitHub
|
|
, fetchYarnDeps
|
|
, makeWrapper
|
|
, prefetch-yarn-deps
|
|
, nodejs
|
|
, yarn
|
|
, nixosTests
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "outline";
|
|
version = "0.75.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "outline";
|
|
repo = "outline";
|
|
rev = "v${version}";
|
|
hash = "sha256-u4WDD0HRaNHdknHaoPYprebUaHt8EmESjBG0N6NZpIk=";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper prefetch-yarn-deps ];
|
|
buildInputs = [ yarn nodejs ];
|
|
|
|
yarnOfflineCache = fetchYarnDeps {
|
|
yarnLock = "${src}/yarn.lock";
|
|
hash = "sha256-V+1lqZh68T3C9VAFETHehv9iCt1j24ZeY9ErbnRGIrk=";
|
|
};
|
|
|
|
configurePhase = ''
|
|
export HOME=$(mktemp -d)/yarn_home
|
|
'';
|
|
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
export NODE_OPTIONS=--openssl-legacy-provider
|
|
|
|
yarn config --offline set yarn-offline-mirror $yarnOfflineCache
|
|
fixup-yarn-lock yarn.lock
|
|
|
|
yarn install --offline \
|
|
--frozen-lockfile \
|
|
--ignore-engines --ignore-scripts
|
|
patchShebangs node_modules/
|
|
# apply upstream patches with `patch-package`
|
|
yarn run postinstall
|
|
yarn build
|
|
|
|
runHook postBuild
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/bin $out/share/outline
|
|
mv build server public node_modules $out/share/outline/
|
|
|
|
node_modules=$out/share/outline/node_modules
|
|
build=$out/share/outline/build
|
|
server=$out/share/outline/server
|
|
|
|
makeWrapper ${nodejs}/bin/node $out/bin/outline-server \
|
|
--add-flags $build/server/index.js \
|
|
--set NODE_ENV production \
|
|
--set NODE_PATH $node_modules \
|
|
--prefix PATH : ${lib.makeBinPath [ nodejs ]} # required to run migrations
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
passthru.tests = {
|
|
basic-functionality = nixosTests.outline;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "The fastest wiki and knowledge base for growing teams. Beautiful, feature rich, and markdown compatible";
|
|
homepage = "https://www.getoutline.com/";
|
|
changelog = "https://github.com/outline/outline/releases";
|
|
license = licenses.bsl11;
|
|
maintainers = with maintainers; [ cab404 yrd xanderio ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|