This repository has been archived on 2023-03-15. You can view files and clone it, but cannot push or open issues or pull requests.
infrastructure/app/cryptpad/build/shell.nix
2022-05-05 17:45:15 +02:00

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
];
}