matrix-appservice-irc: add package.json to package

- seems that package.json is still required in the package root, so add it
- also add `strictDeps = true` to mkDerivation (this removed bash as a
  direct dependency)
This commit is contained in:
Дамјан Георгиевски 2023-08-01 13:53:02 +02:00
parent af11c51c47
commit fdd97a4738
No known key found for this signature in database

View file

@ -31,6 +31,8 @@ in
stdenv.mkDerivation {
inherit pname version src yarnOfflineCache;
strictDeps = true;
nativeBuildInputs = [
prefetch-yarn-deps
nodejs-slim
@ -62,6 +64,7 @@ stdenv.mkDerivation {
runHook preInstall
mkdir $out
cp package.json $out
cp app.js config.schema.yml $out
cp -r bin lib public $out