Skip to content

Commit

Permalink
matrix-appservice-irc: 1.0.1 -> 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mweinelt committed Apr 16, 2024
1 parent 8d2ac85 commit 2f35531
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions pkgs/servers/matrix-synapse/matrix-appservice-irc/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,28 +3,28 @@
, fetchFromGitHub
, fetchYarnDeps
, prefetch-yarn-deps
, nodejs
, nodejs-slim
, nodejs_20
, nodejs-slim_20
, matrix-sdk-crypto-nodejs
, nixosTests
, nix-update-script
}:

let
pname = "matrix-appservice-irc";
version = "1.0.1";
version = "2.0.0";

src = fetchFromGitHub {
owner = "matrix-org";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-wUbWvCa9xvot73nXZjF3/RawM98ffBCW5YR2+ZKzmEo=";
hash = "sha256-voZJVBggsuwmGw/imt2HYmqiYBkRYMpppt/Nemh6fsM=";
};

yarnOfflineCache = fetchYarnDeps {
name = "${pname}-${version}-offline-cache";
yarnLock = "${src}/yarn.lock";
hash = "sha256-P9u5sK9rIHWRE8kFMj05fVjv26jwsawvHBZgSn7j5BE=";
hash = "sha256-hapEbdjvvzeZHfrpYRW9W3vXkQVNyGZ0qydO34+mQqQ=";
};

in
Expand All @@ -35,9 +35,9 @@ stdenv.mkDerivation {

nativeBuildInputs = [
prefetch-yarn-deps
nodejs-slim
nodejs.pkgs.yarn
nodejs.pkgs.node-gyp-build
nodejs-slim_20
nodejs_20.pkgs.yarn
nodejs_20.pkgs.node-gyp-build
];

configurePhase = ''
Expand Down Expand Up @@ -83,6 +83,7 @@ stdenv.mkDerivation {
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";
maintainers = with maintainers; [ rhysmdnz ];
homepage = "https://github.com/matrix-org/matrix-appservice-irc";
Expand Down

0 comments on commit 2f35531

Please sign in to comment.