nixpkgs/pkgs/servers/matrix-synapse/matrix-appservice-irc/default.nix
Rhys Davies 062f14268e
matrix-appservice-irc: Add rhysmdnz to maintainers
Signed-off-by: Rhys Davies <rhys@memes.nz>
2022-10-16 21:24:20 +13:00

45 lines
1.2 KiB
Nix

{ pkgs, nodePackages, makeWrapper, nixosTests, nodejs, stdenv, lib, fetchFromGitHub, fetchurl, autoPatchelfHook }:
let
ourNodePackages = import ./node-composition.nix {
inherit pkgs nodejs;
inherit (stdenv.hostPlatform) system;
};
version = (lib.importJSON ./package.json).version;
srcInfo = lib.importJSON ./src.json;
in
ourNodePackages.package.override {
pname = "matrix-appservice-irc";
inherit version;
src = fetchFromGitHub {
owner = "matrix-org";
repo = "matrix-appservice-irc";
rev = version;
inherit (srcInfo) sha256;
};
nativeBuildInputs = [ autoPatchelfHook makeWrapper nodePackages.node-gyp-build ];
dontAutoPatchelf = true;
postInstall = ''
# Compile typescript
npm run build
makeWrapper '${nodejs}/bin/node' "$out/bin/matrix-appservice-irc" \
--add-flags "$out/lib/node_modules/matrix-appservice-irc/app.js"
'';
passthru.tests.matrix-appservice-irc = nixosTests.matrix-appservice-irc;
passthru.updateScript = ./update.sh;
meta = with lib; {
description = "Node.js IRC bridge for Matrix";
maintainers = with maintainers; [ rhysmdnz ];
homepage = "https://github.com/matrix-org/matrix-appservice-irc";
license = licenses.asl20;
platforms = platforms.linux;
};
}