96 lines
2.3 KiB
Nix
96 lines
2.3 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, fetchYarnDeps
|
|
, fixup-yarn-lock
|
|
, nodejs
|
|
, nodejs-slim
|
|
, matrix-sdk-crypto-nodejs
|
|
, nixosTests
|
|
, nix-update-script
|
|
, yarn
|
|
}:
|
|
|
|
let
|
|
pname = "matrix-appservice-irc";
|
|
version = "3.0.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "matrix-org";
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-ugnFlvu5kkfTHPD44/F8OvGUx55VcHQvTS99T7Wc2fE=";
|
|
};
|
|
|
|
yarnOfflineCache = fetchYarnDeps {
|
|
name = "${pname}-${version}-offline-cache";
|
|
yarnLock = "${src}/yarn.lock";
|
|
hash = "sha256-PObpXC8VIdsqhOZLLeHdS9mvXnjNQOrs2vlTeK5keRw=";
|
|
};
|
|
|
|
in
|
|
stdenv.mkDerivation {
|
|
inherit pname version src yarnOfflineCache;
|
|
|
|
strictDeps = true;
|
|
|
|
nativeBuildInputs = [
|
|
fixup-yarn-lock
|
|
nodejs-slim
|
|
yarn
|
|
nodejs.pkgs.node-gyp-build
|
|
];
|
|
|
|
configurePhase = ''
|
|
runHook preConfigure
|
|
|
|
export HOME=$(mktemp -d)
|
|
yarn config --offline set yarn-offline-mirror "$yarnOfflineCache"
|
|
fixup-yarn-lock yarn.lock
|
|
yarn install --frozen-lockfile --offline --no-progress --non-interactive --ignore-scripts
|
|
patchShebangs node_modules/ bin/
|
|
|
|
runHook postConfigure
|
|
'';
|
|
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
|
|
yarn --offline build
|
|
|
|
runHook postBuild
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir $out
|
|
cp package.json $out
|
|
cp app.js config.schema.yml $out
|
|
cp -r bin lib public $out
|
|
|
|
# prune dependencies to production only
|
|
yarn install --frozen-lockfile --offline --no-progress --non-interactive --ignore-scripts --production
|
|
cp -r node_modules $out
|
|
|
|
# replace matrix-sdk-crypto-nodejs with nixos package
|
|
rm -rv $out/node_modules/@matrix-org/matrix-sdk-crypto-nodejs
|
|
ln -sv ${matrix-sdk-crypto-nodejs}/lib/node_modules/@matrix-org/matrix-sdk-crypto-nodejs $out/node_modules/@matrix-org/
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
passthru.tests.matrix-appservice-irc = nixosTests.matrix-appservice-irc;
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = with lib; {
|
|
changelog = "https://github.com/matrix-org/matrix-appservice-irc/releases/tag/${version}";
|
|
description = "Node.js IRC bridge for Matrix";
|
|
mainProgram = "matrix-appservice-irc";
|
|
maintainers = with maintainers; [ rhysmdnz ];
|
|
homepage = "https://github.com/matrix-org/matrix-appservice-irc";
|
|
license = licenses.asl20;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|