aboutsummaryrefslogtreecommitdiff
path: root/gn/packages/ldc.scm
diff options
context:
space:
mode:
authorpjotrp2017-02-26 08:54:27 +0000
committerpjotrp2017-02-26 08:54:27 +0000
commit782d1d5509601986adf1ea35e79523f0a08b5426 (patch)
treef84f0257bb3e29bd4cef838d04e6ce325936d089 /gn/packages/ldc.scm
parent303c93c04c65a2dbf0c8ad8e27b5e6c849848d06 (diff)
downloadguix-bioinformatics-782d1d5509601986adf1ea35e79523f0a08b5426.tar.gz
rdmd: is in Guix master now
Diffstat (limited to 'gn/packages/ldc.scm')
-rw-r--r--gn/packages/ldc.scm40
1 files changed, 0 insertions, 40 deletions
diff --git a/gn/packages/ldc.scm b/gn/packages/ldc.scm
index cc68465..438cfd3 100644
--- a/gn/packages/ldc.scm
+++ b/gn/packages/ldc.scm
@@ -193,43 +193,3 @@
"12cak7yqmsgjlflx0dp6fwmwb9dac25amgi86n0bb95ard3547wy")))))))))
(define-public ldc ldc-1.1.0-patched)
-
-(define-public rdmd
- (package
- (name "rdmd")
- (version "v2.072.1") ;; remove v when putting in mainline
- (source (origin
- (method url-fetch)
- (uri (string-append
- "https://github.com/dlang/tools/archive/"
- version ".tar.gz"))
- (file-name (string-append name "-" version ".tar.gz"))
- (sha256
- (base32
- "0ryn4fv1mj8c8d7y4lrr43baahl3z7sk5bryj9kd829paz573va6"))))
- (build-system gnu-build-system)
- (arguments
- '(#:phases
- (modify-phases %standard-phases
- (delete 'configure)
- (delete 'check) ; There is no Makefile, so there's no 'make check'.
- (replace
- 'build
- (lambda _
- (zero? (system* "ldc2" "rdmd.d"))))
- (replace
- 'install
- (lambda* (#:key outputs #:allow-other-keys)
- (let ((bin (string-append (assoc-ref outputs "out") "/bin")))
- (install-file "rdmd" bin)))))))
- (native-inputs
- `(("ldc" ,ldc)))
- (home-page "https://github.com/D-Programming-Language/tools/")
- (synopsis "Specialized equivalent to 'make' for the D language")
- (description
- "rdmd is a companion to the dmd compiler that simplifies the typical
-edit-compile-link-run or edit-make-run cycle to a rapid edit-run cycle. Like
-make and other tools, rdmd uses the relative dates of the files involved to
-minimize the amount of work necessary. Unlike make, rdmd tracks dependencies
-and freshness without requiring additional information from the user.")
- (license license:boost1.0)))