matrix-appservice-discord: remove references to node-sources

This commit is contained in:
Max 2022-09-21 17:10:25 +02:00
parent 1ef96c2f24
commit 8224781cb0

View File

@ -1,4 +1,4 @@
{ lib, mkYarnPackage, fetchFromGitHub, runCommand, makeWrapper, python3, nodejs }:
{ lib, mkYarnPackage, fetchFromGitHub, runCommand, makeWrapper, python3, nodejs, removeReferencesTo }:
assert lib.versionAtLeast nodejs.version "12.0.0";
@ -30,6 +30,7 @@ in mkYarnPackage rec {
postInstall = ''
# build native sqlite bindings
npm run build-release --offline --nodedir="${nodeSources}"
find build -type f -exec ${removeReferencesTo}/bin/remove-references-to -t "${nodeSources}" {} \;
'';
};
};