From f6dfaeeedfb3f169e4a9aa1f67e98d45a2365a5f Mon Sep 17 00:00:00 2001 From: Vicente Vera Parra Date: Sun, 13 Sep 2015 13:07:34 -0300 Subject: [PATCH 03/19] gnu: Add r-dbi. * gnu/packages/statistics.scm (r-dbi): New variable. --- gnu/packages/statistics.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 004ecef..76cc031 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -535,3 +535,23 @@ what they've done wrong.") (description "A disciplined approach to non-standard evaluation.") (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 + "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:lgpl3+))) -- 2.5.1