From 6821f41f9bf79b853724eb1fd5f01d7acba5fe5a Mon Sep 17 00:00:00 2001
From: Raoul Jean Pierre Bonnal <ilpuccio.febo@gmail.com>
Date: Tue, 27 Dec 2016 20:52:20 +0100
Subject: [PATCH 03/11] gnu: Add r-sourcetools.

---
 gnu/packages/statistics.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index b406e9e..4440565 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -3852,3 +3852,25 @@ density using quasirandom noise.")
      "The bee swarm plot is a one-dimensional scatter plot like stripchart,
 but with closely-packed, non-overlapping points.")
     (license license:artistic2.0)))
+
+(define-public r-sourcetools
+  (package
+    (name "r-sourcetools")
+    (version "0.1.5")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "sourcetools" version))
+       (sha256
+        (base32
+         "0jx6kslygfqaic3cmjwag3dy98q1a2dw20cz7z8agsknmmbk6dy2"))))
+    (build-system r-build-system)
+    (home-page "http://cran.r-project.org/web/packages/sourcetools")
+    (synopsis
+     "Tools for reading, tokenizing and parsing R code.")
+    (description
+     "Tools for the reading and tokenization of R code.  The
+sourcetools package provides both an R and C++ interface for the
+tokenization of R code, and helpers for interacting with the
+tokenized representation of R code.")
+    (license license:expat)))
-- 
1.9.1

