summaryrefslogtreecommitdiff
path: root/shell.nix
blob: dc582fbf51204e1cc9001c8b175b72b328895cc9 (plain)
1
2
3
4
5
6
7
8
9
10
11
with import <nixpkgs> { };
let
  R-packages = rWrapper.override { packages = with rPackages; [ ggplot2 caret ]; };
in mkShell {
  name = "lazar";
  buildInputs = [
    git
    R-packages
    openbabel
  ];
}