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
libmysqlclient
nodejs-12_x
ruby_2_7
ruby
yarn
zlib
(

View file

@ -1,7 +1,7 @@
let
pkgs = import <nixpkgs> { };
in
pkgs.mkShell {
pkgs.mkShell {
buildInputs = [
(pkgs.rWrapper.override {
packages = with pkgs.rPackages; [
@ -15,4 +15,4 @@ in
];
})
];
}
}