epgstation: move node-pre-gyp and node-gyp-build to buildInputs
This commit is contained in:
parent
dfeb273bfa
commit
834477e4d4
2 changed files with 2 additions and 2 deletions
|
@ -42,7 +42,7 @@ let
|
||||||
production = false;
|
production = false;
|
||||||
|
|
||||||
buildInputs = [ bash ];
|
buildInputs = [ bash ];
|
||||||
nativeBuildInputs = drv.nativeBuildInputs ++ [
|
nativeBuildInputs = (drv.nativeBuildInputs or [ ]) ++ [
|
||||||
makeWrapper
|
makeWrapper
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -119,7 +119,7 @@ let
|
||||||
# NOTE: this is a stub package to fetch npm dependencies for
|
# NOTE: this is a stub package to fetch npm dependencies for
|
||||||
# ../../applications/video/epgstation
|
# ../../applications/video/epgstation
|
||||||
epgstation = super."epgstation-../../applications/video/epgstation".override (drv: {
|
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 // {
|
meta = drv.meta // {
|
||||||
platforms = pkgs.lib.platforms.none;
|
platforms = pkgs.lib.platforms.none;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue