diff options
author | Vicente Vera Parra <vicentemvp@gmail.com> | 2015-09-15 14:14:11 -0300 |
---|---|---|
committer | Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> | 2015-09-16 12:01:12 +0200 |
commit | 8ea6b30fea9637c5568c310d384bc13bc225648b (patch) | |
tree | 56e652b1eeabace7e8972248e5497173c1fe7765 /gnu | |
parent | f4e92db3cb25d44ca3db96e960790f856c2887f1 (diff) | |
download | patches-8ea6b30fea9637c5568c310d384bc13bc225648b.tar patches-8ea6b30fea9637c5568c310d384bc13bc225648b.tar.gz |
gnu: Add r-dbi.
* gnu/packages/statistics.scm (r-dbi): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/statistics.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 6bd8e767ec..6ccb97f375 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -539,3 +539,24 @@ wrong.") "This package provides the tools necessary to do non-standard evaluation (NSE) in R.") (license license:gpl3+))) + +(define-public r-dbi + (package + (name "r-dbi") + (version "0.3.1") + (source (origin + (method url-fetch) + (uri (string-append "mirror://cran/src/contrib/DBI_" + version ".tar.gz")) + (sha256 + (base32 + "0xj5baxwnhl23rd5nskhjvranrwrc68f3xlyrklglipi41bm69hw")))) + (build-system r-build-system) + (home-page "https://github.com/rstats-db/DBI") + (synopsis "R database interface") + (description + "The DBI package provides a database interface (DBI) definition for +communication between R and relational database management systems. All +classes in this package are virtual and need to be extended by the various +R/DBMS implementations.") + (license license:lgpl2.0+))) |