1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-01-22 06:36:43 +00:00
nixpkgs/pkgs/applications/editors/emacs-modes/ess/default.nix

21 lines
478 B
Nix
Raw Normal View History

2013-06-15 16:12:40 +01:00
{ stdenv, fetchurl, emacs, texinfo }:
2013-12-03 11:44:52 +00:00
stdenv.mkDerivation rec {
name = "ess-13.09";
2013-06-15 16:12:40 +01:00
src = fetchurl {
2013-12-03 11:44:52 +00:00
url = "http://ess.r-project.org/downloads/ess/${name}.tgz";
sha256 = "1lki3vb6p7cw98zqq0gaia68flpqrjkd6dcl85fs0cc8qf55yqnh";
2013-06-15 16:12:40 +01:00
};
buildInputs = [ emacs texinfo ];
configurePhase = "makeFlags=PREFIX=$out";
meta = {
description = "Emacs Speaks Statistics";
homepage = "http://ess.r-project.org/";
license = stdenv.lib.licenses.gpl2Plus;
};
}