gnu: dub: Update to 1.23.0.
This also fixes Dub's build, which was previously failing because of how ancient it was. * gnu/packages/dlang.scm (dub): Update to 1.23.0. [arguments]: Set target CC & LD environment variables. Invoke build.d. Don't explicitly return #t from phases. [native-inputs]: Add d-tools and ld-gold-wrapper. Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr>
This commit is contained in:
parent
f3c5074373
commit
b438836833
@ -442,7 +442,7 @@ integration tests...\n")
|
|||||||
(define-public dub
|
(define-public dub
|
||||||
(package
|
(package
|
||||||
(name "dub")
|
(name "dub")
|
||||||
(version "1.7.2")
|
(version "1.23.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
@ -451,7 +451,7 @@ integration tests...\n")
|
|||||||
(commit (string-append "v" version))))
|
(commit (string-append "v" version))))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "073ibvgm1gphcqs1yjrav9ryp677nh3b194nxmvicwgvdc0sb6w9"))))
|
(base32 "06a4whsl1m600k096nwif83n7za3vr7pj1xwapncy5fcad1gmady"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; it would have tested itself by installing some packages (vibe etc)
|
`(#:tests? #f ; it would have tested itself by installing some packages (vibe etc)
|
||||||
@ -460,17 +460,22 @@ integration tests...\n")
|
|||||||
(delete 'configure) ; no configure script
|
(delete 'configure) ; no configure script
|
||||||
(replace 'build
|
(replace 'build
|
||||||
(lambda _
|
(lambda _
|
||||||
(invoke "./build.sh")))
|
(setenv "CC" ,(cc-for-target))
|
||||||
|
(setenv "LD" ,(ld-for-target))
|
||||||
|
(invoke "./build.d")))
|
||||||
(replace 'install
|
(replace 'install
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(let* ((out (assoc-ref outputs "out"))
|
(let* ((out (assoc-ref outputs "out"))
|
||||||
(bin (string-append out "/bin")))
|
(bin (string-append out "/bin")))
|
||||||
(install-file "bin/dub" bin)
|
(install-file "bin/dub" bin)))))))
|
||||||
#t))))))
|
|
||||||
(inputs
|
(inputs
|
||||||
(list curl))
|
(list curl))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list ldc))
|
(list d-tools
|
||||||
|
ldc
|
||||||
|
(module-ref (resolve-interface
|
||||||
|
'(gnu packages commencement))
|
||||||
|
'ld-gold-wrapper)))
|
||||||
(home-page "https://code.dlang.org/getting_started")
|
(home-page "https://code.dlang.org/getting_started")
|
||||||
(synopsis "Package and build manager for D projects")
|
(synopsis "Package and build manager for D projects")
|
||||||
(description
|
(description
|
||||||
|
Loading…
x
Reference in New Issue
Block a user