2013-06-15 15:12:40 +00:00
|
|
|
{ stdenv, fetchurl, emacs, texinfo }:
|
|
|
|
|
2013-12-03 11:44:52 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2014-11-08 15:00:57 +00:00
|
|
|
name = "ess-14.09";
|
2013-06-15 15:12:40 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-12-03 11:44:52 +00:00
|
|
|
url = "http://ess.r-project.org/downloads/ess/${name}.tgz";
|
2014-11-08 17:44:15 +00:00
|
|
|
sha256 = "0wa507jfmq3k7x0vigd2yzb4j2190ix4wnnpv7ql4bjy0vfvmwdn";
|
2013-06-15 15:12:40 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ emacs texinfo ];
|
|
|
|
|
|
|
|
configurePhase = "makeFlags=PREFIX=$out";
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Emacs Speaks Statistics";
|
2017-08-01 20:03:30 +00:00
|
|
|
homepage = http://ess.r-project.org/;
|
2013-06-15 15:12:40 +00:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2013-12-20 23:05:29 +00:00
|
|
|
hydraPlatforms = stdenv.lib.platforms.linux;
|
2013-06-15 15:12:40 +00:00
|
|
|
};
|
|
|
|
}
|