nixpkgs/pkgs/development/interpreters/r-lang/default.nix
Pjotr Prins f222b38f00 Added rightly named package gfortran and updated gcc version for compiling gfortran
r-lang debends on gfortran


svn path=/nixpkgs/trunk/; revision=12529
2008-08-07 08:33:03 +00:00

19 lines
890 B
Nix

{stdenv, fetchurl, readline, perl, gfortran, libX11, libpng, libXt, zlib}:
stdenv.mkDerivation {
name = "r-lang-2.7.0";
src = fetchurl {
url = http://cran.r-project.org/src/base/R-2/R-2.7.0.tar.gz;
sha256 = "17ql1j5d9rfpxs04j9v9qyxiysc9nh6yr43lgfdamayzjpia5jqm";
};
buildInputs = [readline perl gfortran libpng libX11 libXt zlib];
meta = {
description = "R is a language and environment for statistical computing and graphics";
longDescription = ''R is a language and environment for statistical computing and graphics. It is a GNU project which is similar to the S language. R provides a wide variety of statistical (linear and nonlinear modelling, classical statistical tests, time-series analysis, classification, clustering, ...) and graphical techniques, and is highly extensible.'';
license = "GPL2";
homepage = http://www.r-project.org/;
};
}