about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRoel Janssen2016-02-22 11:08:36 +0100
committerRoel Janssen2016-02-22 11:08:36 +0100
commit10e42d4dd2590dc6625bff974d5086fb2bd9ee8a (patch)
treed69b56903009a430cbf1395502e0494e2be47798
parent840ff7f96e50cb9e58832c573ce3a9b05a2888c9 (diff)
downloadguix-bioinformatics-10e42d4dd2590dc6625bff974d5086fb2bd9ee8a.tar.gz
Further rdmd refinements.
-rw-r--r--gn/packages/bioinformatics.scm10
1 files changed, 4 insertions, 6 deletions
diff --git a/gn/packages/bioinformatics.scm b/gn/packages/bioinformatics.scm
index 80fe134..67096b0 100644
--- a/gn/packages/bioinformatics.scm
+++ b/gn/packages/bioinformatics.scm
@@ -267,9 +267,8 @@ mixed model and some of its close relatives for genome-wide
 association studies (GWAS).")
     (license license:gpl3))))
 
-
 (define-public rdmd
-  (let ((commit "4dba6877c481c1a911a7d50714da8fbd80022f0e"))
+  (let ((commit "4dba6877c"))
     (package
       (name "rdmd")
       (version "20160217")
@@ -287,10 +286,10 @@ association studies (GWAS).")
        '(#:phases
          (modify-phases %standard-phases
            (delete 'configure)
-           (delete 'check)
+           (delete 'check) ; There is no Makefile, so there's no 'make check'.
            (replace
             'build
-            (lambda* _
+            (lambda _
               (zero? (system* "ldc2" "rdmd.d"))))
            (replace
             'install
@@ -299,8 +298,7 @@ association studies (GWAS).")
                 (mkdir-p bin)
                 (copy-file "rdmd" (string-append bin "/rdmd"))))))))
       (native-inputs
-       `(("gcc" ,gcc)
-         ("ldc" ,ldc)))
+       `(("ldc" ,ldc)))
       (home-page "https://github.com/D-Programming-Language/tools/")
       (synopsis "Tool for the D language which is used for compiling")
       (description