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