about summary refs log tree commit diff
path: root/gn/packages/lmm.scm
diff options
context:
space:
mode:
Diffstat (limited to 'gn/packages/lmm.scm')
-rw-r--r--gn/packages/lmm.scm24
1 files changed, 24 insertions, 0 deletions
diff --git a/gn/packages/lmm.scm b/gn/packages/lmm.scm
index bcb6c47..3761db7 100644
--- a/gn/packages/lmm.scm
+++ b/gn/packages/lmm.scm
@@ -41,6 +41,30 @@
   #:use-module (gnu packages bootstrap)
   #:use-module (srfi srfi-1))
 
+
+(define-public r-lmmlite
+  (package
+    (name "r-lmmlite")
+    (version "0.1-9")
+    (source (origin
+              ;; We use the git reference, because there's no CRAN package (yet)
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/kbroman/lmmlite.git")
+                    (commit "5b833d5")))
+              (file-name (string-append name "-" version "-checkout"))
+              (sha256
+               (base32
+                "0v4z4qxa8ki9hlmdwlgslchvg21nqkkq6135nx6w63xikjffxcba"))))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-rcppeigen" ,r-rcppeigen)))
+    (synopsis "R/lmmlite")
+    (description
+     "R/lmmlite")
+    (home-page "https://github.com/kbroman/")
+    (license license:asl2.0)))
+
 (define-public r-emma ; guix potential candidate (not in CRAN)
   (package
    (name "r-emma")