[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: Add r-gg3d.
From: |
guix-commits |
Subject: |
branch master updated: gnu: Add r-gg3d. |
Date: |
Mon, 09 Jan 2023 08:51:19 -0500 |
This is an automated email from the git hooks/post-receive script.
rekado pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new de48bcee07 gnu: Add r-gg3d.
de48bcee07 is described below
commit de48bcee070b8d1ea6f3abe24be28d3b7d1aff68
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Mon Jan 9 14:49:25 2023 +0100
gnu: Add r-gg3d.
* gnu/packages/bioinformatics.scm (r-gg3d): New variable.
---
gnu/packages/bioinformatics.scm | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 08d9d83471..6e909773a7 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -7689,6 +7689,38 @@ sequence.")
(supported-systems '("i686-linux" "x86_64-linux"))
(license license:bsd-3)))
+(define-public r-gg3d
+ (let ((commit "ffdd837d30c1671cd0895db94bdd7b1594dbfcb0")
+ (revision "1"))
+ (package
+ (name "r-gg3d")
+ (version (git-version "0.0.0.9000" revision commit))
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/AckerDWM/gg3D")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0vz5laj5vz9m1jzb7h7q9f37zjmxwhylhaidlsg61r57wpxvjr3p"))))
+ (properties `((upstream-name . "gg3D")))
+ (build-system r-build-system)
+ (propagated-inputs
+ (list r-dplyr
+ r-ggplot2
+ r-magrittr
+ r-plot3d
+ r-plyr
+ r-scales))
+ (native-inputs (list r-knitr))
+ (home-page "https://github.com/AckerDWM/gg3D")
+ (synopsis "3D perspective plots for ggplot2")
+ (description
+ "This package adds 3D perspective plotting of points, paths, and line,
+3D perspective axes, 3D perspective annotations, and wireframe plots.")
+ (license license:gpl3+))))
+
(define-public r-gutils
(let ((commit "10e36c7b580aacb2d952140a3fdd82418aaddea6")
(revision "1"))
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: Add r-gg3d.,
guix-commits <=