aboutsummaryrefslogblamecommitdiff
path: root/app/cryptpad/build/shell.nix
blob: d47a050331001250399b4131b17bb29f46c160a6 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                                  
let
  common = import ./common.nix;
  pkgs = import common.pkgsSrc {};
  nodejs = pkgs.${common.nodejs};
in
  pkgs.mkShell {
    buildInputs = [
      nodejs
      pkgs.nodePackages.npm
      pkgs.nodePackages.bower
    ];
  }