summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormidchildan <git@midchildan.org>2022-05-14 00:17:11 +0900
committermidchildan <git@midchildan.org>2022-05-14 00:48:28 +0900
commit834477e4d43f45bf34f52804015783298e4e2ff1 (patch)
tree03e3e05796953eed79c37994ab28f64935fb268e
parentdfeb273bfa4189b5d6ce08a89b78a5a4a6f0a21a (diff)
epgstation: move node-pre-gyp and node-gyp-build to buildInputs
-rw-r--r--pkgs/applications/video/epgstation/default.nix2
-rw-r--r--pkgs/development/node-packages/default.nix2
2 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/video/epgstation/default.nix b/pkgs/applications/video/epgstation/default.nix
index c93c0f94fa9b..323b22c7883d 100644
--- a/pkgs/applications/video/epgstation/default.nix
+++ b/pkgs/applications/video/epgstation/default.nix
@@ -42,7 +42,7 @@ let
production = false;
buildInputs = [ bash ];
- nativeBuildInputs = drv.nativeBuildInputs ++ [
+ nativeBuildInputs = (drv.nativeBuildInputs or [ ]) ++ [
makeWrapper
];
diff --git a/pkgs/development/node-packages/default.nix b/pkgs/development/node-packages/default.nix
index e65802f68339..afeb5e35f2c8 100644
--- a/pkgs/development/node-packages/default.nix
+++ b/pkgs/development/node-packages/default.nix
@@ -119,7 +119,7 @@ let
# NOTE: this is a stub package to fetch npm dependencies for
# ../../applications/video/epgstation
epgstation = super."epgstation-../../applications/video/epgstation".override (drv: {
- nativeBuildInputs = [ self.node-pre-gyp self.node-gyp-build ];
+ buildInputs = [ self.node-pre-gyp self.node-gyp-build ];
meta = drv.meta // {
platforms = pkgs.lib.platforms.none;
};