[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: gnu: dub: Update to 1.3.0.
From: |
Tobias Geerinckx-Rice |
Subject: |
01/01: gnu: dub: Update to 1.3.0. |
Date: |
Tue, 11 Apr 2017 00:38:57 -0400 (EDT) |
nckx pushed a commit to branch master
in repository guix.
commit cd12f922246ae798ec248768713848d939d31ea0
Author: Tobias Geerinckx-Rice <address@hidden>
Date: Tue Apr 11 06:34:17 2017 +0200
gnu: dub: Update to 1.3.0.
* gnu/packages/ldc.scm (dub): Update to 1.3.0.
[arguments]: Add comment, remove spurious MKDIR-P, and rename OUTBIN.
---
gnu/packages/ldc.scm | 11 +++++------
1 file changed, 5 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/ldc.scm b/gnu/packages/ldc.scm
index 881029a..42e6c04 100644
--- a/gnu/packages/ldc.scm
+++ b/gnu/packages/ldc.scm
@@ -279,7 +279,7 @@ latest DMD frontend and uses LLVM as backend.")
(define-public dub
(package
(name "dub")
- (version "1.2.2")
+ (version "1.3.0")
(source (origin
(method url-fetch)
(uri (string-append "https://github.com/dlang/dub/archive/"
@@ -287,22 +287,21 @@ latest DMD frontend and uses LLVM as backend.")
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
- "02k11x34nck0lbv13ww103niiswnwnslbnswj3b5faszzadbi1v4"))))
+ "056mvf01z51qc3i1qnx7yaqr728q8pss8zabiv5zpfx2ynfsw3k7"))))
(build-system gnu-build-system)
(arguments
`(#:tests? #f ; it would have tested itself by installing some packages
(vibe etc)
#:phases
(modify-phases %standard-phases
- (delete 'configure)
+ (delete 'configure) ; no configure script
(replace 'build
(lambda _
(zero? (system* "./build.sh"))))
(replace 'install
(lambda* (#:key outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out"))
- (outbin (string-append out "/bin")))
- (mkdir-p outbin)
- (install-file "bin/dub" outbin)
+ (bin (string-append out "/bin")))
+ (install-file "bin/dub" bin)
#t))))))
(inputs
`(("curl" ,curl)))