summary refs log tree commit diff
path: root/pkgs/applications/editors/emacs-modes/ess/default.nix
blob: 4bd5148b9508572822b6b15670fcc84ef4bfced0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, fetchurl, emacs, texinfo }:

stdenv.mkDerivation {
  name = "ess-13.05";

  src = fetchurl {
    url = "http://ess.r-project.org/downloads/ess/ess-13.05.tgz";
    sha256 = "007rd8hg1aclr2i8178ym5c4bi7vgmwkp802v1mkgr85h50zlfdk";
  };

  buildInputs = [ emacs texinfo ];

  configurePhase = "makeFlags=PREFIX=$out";

  meta = {
    description = "Emacs Speaks Statistics";
    homepage = "http://ess.r-project.org/";
    license = stdenv.lib.licenses.gpl2Plus;
  };
}