diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2020-12-09 17:46:45 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2020-12-09 22:03:27 +0100 |
commit | feb7c4f6cabc270b34894c54fbdbaffc782e3c60 (patch) | |
tree | e8eb03b6c2dcd9cf079be72e98aeaf53f79a7793 | |
parent | 73545fde4249b160e0c7d0f6da9e55ae0c9f8c47 (diff) |
gnu: Add r-ash.
* gnu/packages/cran.scm (r-ash): New variable.
-rw-r--r-- | gnu/packages/cran.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 14a2bd751c..ddf34ea439 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -19334,6 +19334,27 @@ metrics to quantify time accumulation strategies based on minute level actigraphy-measured activity counts data.") (license license:gpl3))) +(define-public r-ash + (package + (name "r-ash") + (version "1.0-15") + (source + (origin + (method url-fetch) + (uri (cran-uri "ash" version)) + (sha256 + (base32 + "1ay2a2agdmiz7zzvn26mli0x0iwk09g5pp4yy1r23knhkp1pn2lb")))) + (properties `((upstream-name . "ash"))) + (build-system r-build-system) + (native-inputs `(("gfortran" ,gfortran))) + (home-page "https://cran.r-project.org/web/packages/ash/") + (synopsis "David Scott's ASH routines") + (description + "This package provides David Scott's ASH routines ported from S-PLUS to +R.") + (license license:gpl2+))) + (define-public r-fda (package (name "r-fda") |