Add a nix shell for playing with plots
This commit is contained in:
parent
dd0823876a
commit
a8208480c1
14
garlic/fig/dev/shell.nix
Normal file
14
garlic/fig/dev/shell.nix
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
{ pkgs ? import ../../../default.nix }:
|
||||||
|
|
||||||
|
with pkgs;
|
||||||
|
|
||||||
|
let
|
||||||
|
rWrapper = pkgs.rWrapper.override {
|
||||||
|
packages = with pkgs.rPackages; [ tidyverse rjson jsonlite ];
|
||||||
|
};
|
||||||
|
in
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "R";
|
||||||
|
|
||||||
|
buildInputs = [ rWrapper ];
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user