Add a nix shell for playing with plots

This commit is contained in:
Rodrigo Arias 2020-11-05 20:01:26 +01:00
parent dd0823876a
commit a8208480c1

14
garlic/fig/dev/shell.nix Normal file
View 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 ];
}