build-system/dub: Don't expect ‘.dub/dub.json’.
This file is no longer produced by our version of Dub. * guix/build/dub-build-system.scm (build, check): Remove obsolete substitutions. Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr>
This commit is contained in:
parent
ba95bbbac5
commit
30edb241a9
1 changed files with 2 additions and 8 deletions
|
@ -91,17 +91,11 @@ (define* (build #:key (dub-build-flags '())
|
|||
(unless (or (grep* "sourceLibrary" "package.json")
|
||||
(grep* "sourceLibrary" "dub.sdl") ; note: format is different!
|
||||
(grep* "sourceLibrary" "dub.json"))
|
||||
(apply invoke `("dub" "build" ,@dub-build-flags))
|
||||
(substitute* ".dub/dub.json"
|
||||
(("\"lastUpgrade\": \"[^\"]*\"")
|
||||
"\"lastUpgrade\": \"1970-01-01T00:00:00.0000000\""))))
|
||||
(apply invoke `("dub" "build" ,@dub-build-flags))))
|
||||
|
||||
(define* (check #:key tests? #:allow-other-keys)
|
||||
(when tests?
|
||||
(invoke "dub" "test")
|
||||
(substitute* ".dub/dub.json"
|
||||
(("\"lastUpgrade\": \"[^\"]*\"")
|
||||
"\"lastUpgrade\": \"1970-01-01T00:00:00.0000000\""))))
|
||||
(invoke "dub" "test")))
|
||||
|
||||
(define* (install #:key inputs outputs #:allow-other-keys)
|
||||
"Install a given DUB package."
|
||||
|
|
Loading…
Reference in a new issue