forked from Deuxfleurs/infrastructure
14 lines
228 B
Nix
14 lines
228 B
Nix
|
let
|
||
|
common = import ./common.nix;
|
||
|
pkgs = import common.pkgsSrc {};
|
||
|
nodejs = pkgs.${common.nodejs};
|
||
|
in
|
||
|
pkgs.mkShell {
|
||
|
buildInputs = [
|
||
|
nodejs
|
||
|
pkgs.nodePackages.npm
|
||
|
pkgs.nodePackages.bower
|
||
|
];
|
||
|
}
|
||
|
|