15 lines
332 B
Nix
15 lines
332 B
Nix
|
{ pkgs ? import <nixpkgs> { inherit system; }, system ? builtins.currentSystem
|
||
|
}:
|
||
|
|
||
|
let nodePackages = import ./default.nix { inherit pkgs system; };
|
||
|
in nodePackages // {
|
||
|
shell = nodePackages.shell.override {
|
||
|
buildInputs = with pkgs; [
|
||
|
pkgs.nodePackages.node-gyp-build
|
||
|
vips
|
||
|
glib
|
||
|
pkgconfig
|
||
|
];
|
||
|
};
|
||
|
}
|