diff options
author | Pjotr Prins | 2015-12-26 16:12:41 +0300 |
---|---|---|
committer | Pjotr Prins | 2015-12-26 16:12:41 +0300 |
commit | 8e903088a7442a047911bee5e4090dce624876fb (patch) | |
tree | 7a46c177700e9aa1da0b79cd55f23980579708cb /gn | |
parent | 1e0843ac892e8a63ee538ac0a5b3fc1485164730 (diff) | |
download | guix-bioinformatics-8e903088a7442a047911bee5e4090dce624876fb.tar.gz |
ldc: Patchin tests
Diffstat (limited to 'gn')
-rw-r--r-- | gn/packages/dlanguage.scm | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/gn/packages/dlanguage.scm b/gn/packages/dlanguage.scm index 3d0ea90..d2604dd 100644 --- a/gn/packages/dlanguage.scm +++ b/gn/packages/dlanguage.scm @@ -28,8 +28,6 @@ #:use-module (gnu packages zip) #:use-module (guix git-download)) - - (define-public ldc (package (name "ldc") @@ -40,8 +38,7 @@ "https://github.com/ldc-developers/ldc/archive/v" version ".tar.gz")) (sha256 (base32 - "1jvilxx0rpqmkbja4m69fhd5g09697xq7vyqp2hz4hvxmmmv4j40")) - (patches (list (search-patch "ldc-disable-tests.patch"))))) + "1jvilxx0rpqmkbja4m69fhd5g09697xq7vyqp2hz4hvxmmmv4j40")))) (build-system cmake-build-system) (supported-systems '("x86_64-linux" "i686-linux")) (arguments `( @@ -58,8 +55,8 @@ (begin (with-directory-excursion "runtime/phobos" (copy-file (assoc-ref inputs "phobos-src") - "phobos-src.tar.gz") - (zero? (system* "tar" "xvzf" "phobos-src.tar.gz" "--strip-components=1"))) + "phobos-src.tar") + (zero? (system* "tar" "xvf" "phobos-src.tar" "--strip-components=1"))) ))) ;; add-after (add-after 'unpack 'unpack-druntime-source (lambda* (#:key source inputs #:allow-other-keys) @@ -110,7 +107,9 @@ (uri (string-append "https://github.com/ldc-developers/phobos/archive/ldc-v" version ".tar.gz")) (sha256 (base32 - "0sgdj0536c4nb118yiw1f8lqy5d3g3lpg9l99l165lk9xy45l9z4")))) + "0sgdj0536c4nb118yiw1f8lqy5d3g3lpg9l99l165lk9xy45l9z4")) + (patches (list (search-patch "ldc-disable-tests.patch"))))) + ("druntime-src" ;; runtime/druntime ,(origin (method url-fetch) |