diff options
author | Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> | 2015-08-31 15:34:38 +0200 |
---|---|---|
committer | Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> | 2015-09-03 14:31:51 +0200 |
commit | 9a4d8968f0328e3cfb6265325bf096d745a5b51e (patch) | |
tree | 4275ba19b1499a2b5ba896d898c1fbba5e1b6e05 /gnu | |
parent | 7e10056b6bea8d3c43cff1948073d1e24c63e197 (diff) | |
download | guix-9a4d8968f0328e3cfb6265325bf096d745a5b51e.tar guix-9a4d8968f0328e3cfb6265325bf096d745a5b51e.tar.gz |
gnu: Add r-proto.
* gnu/packages/statistics.scm (r-proto): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/statistics.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 6ba75b7850..c4a82d38ea 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -314,3 +314,21 @@ then put all the pieces back together. For example, you might want to fit a model to each spatial location or time point in your study, summarise data by panels or collapse high-dimensional arrays to simpler summary statistics.") (license license:expat))) + +(define-public r-proto + (package + (name "r-proto") + (version "0.3-10") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://cran/src/contrib/proto_" version ".tar.gz")) + (sha256 + (base32 "03mvzi529y6kjcp9bkpk7zlgpcakb3iz73hca6rpjy14pyzl3nfh")))) + (build-system r-build-system) + (home-page "http://r-proto.googlecode.com") + (synopsis "Prototype object-based programming") + (description + "Proto is an object oriented system using object-based, also called +prototype-based, rather than class-based object oriented ideas.") + (license license:gpl2+))) |