mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
R: add version 3.0.1
This commit is contained in:
parent
229661eed3
commit
5779dfc8e4
28
pkgs/applications/science/math/R/default.nix
Normal file
28
pkgs/applications/science/math/R/default.nix
Normal file
@ -0,0 +1,28 @@
|
||||
{ stdenv, fetchurl, blas, bzip2, gfortran, liblapack, libX11, libXmu, libXt
|
||||
, libjpeg, libpng, libtiff, ncurses, pango, pcre, perl, readline, tcl
|
||||
, texLive, tk, xz, zlib, less, texinfo, graphviz
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "R-3.0.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://ftp5.gwdg.de/pub/misc/cran/src/base/R-3/${name}.tar.gz";
|
||||
sha256 = "0d3iv382bsyz6ad5fk382x7sy3qzgpqvd0fw26r0648lyf54i45g";
|
||||
};
|
||||
|
||||
buildInputs = [ blas bzip2 gfortran liblapack libX11 libXmu libXt
|
||||
libXt libjpeg libpng libtiff ncurses pango pcre perl readline tcl
|
||||
texLive tk xz zlib less texinfo graphviz ];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = {
|
||||
description = "a free software environment for statistical computing and graphics";
|
||||
homepage = "http://www.r-project.org/";
|
||||
license = stdenv.lib.licenses.gpl2Plus;
|
||||
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
maintainers = [ stdenv.lib.maintainers.simons ];
|
||||
};
|
||||
}
|
@ -8994,6 +8994,11 @@ let
|
||||
|
||||
pari = callPackage ../applications/science/math/pari {};
|
||||
|
||||
R = callPackage ../applications/science/math/R {
|
||||
inherit (xlibs) libX11 libXt;
|
||||
texLive = texLiveAggregationFun { paths = [ texLive texLiveExtra ]; };
|
||||
};
|
||||
|
||||
singular = callPackage ../applications/science/math/singular {};
|
||||
|
||||
scilab = callPackage ../applications/science/math/scilab {
|
||||
|
Loading…
Reference in New Issue
Block a user