summary refs log tree commit diff
path: root/pkgs/development/r-modules/generic/default.nix
blob: d405cc018d1518d3547fc95b1a6d92151980d64c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
R:

{ buildInputs ? [], ... } @ attrs:

R.stdenv.mkDerivation (
  {
  }
  //
  attrs
  //
  {
    name = "r-" + attrs.name;
    builder = ./builder.sh;
    buildInputs = buildInputs ++ [ R ];
    phases = [ "installPhase" "fixupPhase" ];
  }
)