mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
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:
parent
af11c51c47
commit
fdd97a4738
1 changed files with 3 additions and 0 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue