Update shells

This commit is contained in:
Charlotte Van Petegem 2020-09-11 15:03:24 +02:00
parent a4279dea27
commit 9cd9eb7732
3 changed files with 28 additions and 16 deletions

12
shells/dodona-docs.nix Normal file
View file

@ -0,0 +1,12 @@
let
pkgs = import <nixpkgs> { };
in
pkgs.mkShell {
buildInputs = with pkgs; [
nodejs-12_x
yarn
];
shellHook = ''
export PUPPETEER_EXECUTABLE_PATH="${pkgs.ungoogled-chromium}/bin/chromium"
'';
}

View file

@ -6,7 +6,7 @@ pkgs.mkShell {
chromedriver chromedriver
libmysqlclient libmysqlclient
nodejs-12_x nodejs-12_x
ruby_2_7 ruby
yarn yarn
zlib zlib
( (

View file

@ -1,18 +1,18 @@
let let
pkgs = import <nixpkgs> { }; pkgs = import <nixpkgs> { };
in in
pkgs.mkShell { pkgs.mkShell {
buildInputs = [ buildInputs = [
(pkgs.rWrapper.override { (pkgs.rWrapper.override {
packages = with pkgs.rPackages; [ packages = with pkgs.rPackages; [
base64enc base64enc
dplyr dplyr
dslabs dslabs
jsonlite jsonlite
knitr knitr
R6 R6
rlang rlang
]; ];
}) })
]; ];
} }