mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 22:50:23 -05:00
gnu: ldc-bootstrap: Don't depend on tzdata.
* gnu/packages/dlang.scm (ldc-bootstrap)[inputs]: Remove tzdata. [native-inputs]: Add tzdata-for-tests. [arguments]: Forbid references to tzdata-for-tests. Reviewed-by: Ludovic Courtès <ludo@gnu.org> Signed-off-by: Josselin Poiret <dev@jpoiret.xyz>
This commit is contained in:
parent
e041801e61
commit
d19c7c2791
1 changed files with 3 additions and 2 deletions
|
@ -159,7 +159,8 @@ (define ldc-bootstrap
|
||||||
(base32 "1kfs4fpr1525sv2ny10hlfppy8c075vjm8m649wr2b9411pkgfzx"))))
|
(base32 "1kfs4fpr1525sv2ny10hlfppy8c075vjm8m649wr2b9411pkgfzx"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ;skip in the bootstrap
|
`(#:disallowed-references (,tzdata-for-tests)
|
||||||
|
#:tests? #f ;skip in the bootstrap
|
||||||
#:build-type "Release"
|
#:build-type "Release"
|
||||||
#:configure-flags
|
#:configure-flags
|
||||||
(list "-GNinja")
|
(list "-GNinja")
|
||||||
|
@ -187,7 +188,6 @@ (define ldc-bootstrap
|
||||||
(inputs
|
(inputs
|
||||||
`(("libconfig" ,libconfig)
|
`(("libconfig" ,libconfig)
|
||||||
("libedit" ,libedit)
|
("libedit" ,libedit)
|
||||||
("tzdata" ,tzdata)
|
|
||||||
("zlib" ,zlib)))
|
("zlib" ,zlib)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("lld-wrapper" ,(make-lld-wrapper lld-14 #:lld-as-ld? #t))
|
`(("lld-wrapper" ,(make-lld-wrapper lld-14 #:lld-as-ld? #t))
|
||||||
|
@ -195,6 +195,7 @@ (define ldc-bootstrap
|
||||||
("ldc" ,gdmd)
|
("ldc" ,gdmd)
|
||||||
("ninja" ,ninja)
|
("ninja" ,ninja)
|
||||||
("python-wrapper" ,python-wrapper)
|
("python-wrapper" ,python-wrapper)
|
||||||
|
("tzdata" ,tzdata-for-tests)
|
||||||
("unzip" ,unzip)))
|
("unzip" ,unzip)))
|
||||||
(home-page "http://wiki.dlang.org/LDC")
|
(home-page "http://wiki.dlang.org/LDC")
|
||||||
(synopsis "LLVM-based compiler for the D programming language")
|
(synopsis "LLVM-based compiler for the D programming language")
|
||||||
|
|
Loading…
Reference in a new issue