gnu: rdmd: Update to 2.073.0.

* gnu/packages/ldc.scm (rdmd): Remove local variable "commit".
  [version]: Modify.
  [source]: Modify.
This commit is contained in:
Danny Milosavljevic 2017-02-10 12:19:07 +01:00
parent 01ceca2658
commit 5533071407
No known key found for this signature in database
GPG Key ID: E71A35542C30BAA5
1 changed files with 32 additions and 35 deletions

View File

@ -37,19 +37,16 @@
#:use-module (gnu packages zip)) #:use-module (gnu packages zip))
(define-public rdmd (define-public rdmd
(let ((commit "da0a2e0a379b08294015eec9d531f1e5dd4226f0"))
(package (package
(name "rdmd") (name "rdmd")
(version (string-append "v2.070.0-1." (string-take commit 7))) (version "2.073.0")
(source (origin (source (origin
(method git-fetch) (method url-fetch)
(uri (git-reference (uri (string-append "https://github.com/dlang/tools/archive/v" version ".tar.gz"))
(url "https://github.com/D-Programming-Language/tools.git") (file-name (string-append name "-" version ".tar.gz"))
(commit commit)))
(file-name (string-append name "-" version "-checkout"))
(sha256 (sha256
(base32 (base32
"1pcx5lyqzrip86f4vv60x292rpvnwsq2hvl1znm9x9rn68f34m45")))) "01if3ivnb7g2myfhymp4d9346s4vmvcl82i1kxfs5iza45almh7v"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
'(#:phases '(#:phases
@ -75,7 +72,7 @@ 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 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 minimize the amount of work necessary. Unlike make, rdmd tracks dependencies
and freshness without requiring additional information from the user.") and freshness without requiring additional information from the user.")
(license license:boost1.0)))) (license license:boost1.0)))
(define-public ldc-bootstrap (define-public ldc-bootstrap
(package (package