Update shells
This commit is contained in:
parent
a4279dea27
commit
9cd9eb7732
3 changed files with 28 additions and 16 deletions
12
shells/dodona-docs.nix
Normal file
12
shells/dodona-docs.nix
Normal 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"
|
||||||
|
'';
|
||||||
|
}
|
|
@ -6,7 +6,7 @@ pkgs.mkShell {
|
||||||
chromedriver
|
chromedriver
|
||||||
libmysqlclient
|
libmysqlclient
|
||||||
nodejs-12_x
|
nodejs-12_x
|
||||||
ruby_2_7
|
ruby
|
||||||
yarn
|
yarn
|
||||||
zlib
|
zlib
|
||||||
(
|
(
|
||||||
|
|
30
shells/r.nix
30
shells/r.nix
|
@ -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
|
||||||
];
|
];
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue