mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-19 05:07:11 -05:00
gnu: java-commons-collections4: Remove references to %build-inputs.
* gnu/packages/java.scm (java-commons-collections4)[arguments]: Use a gexp to remove references to %build-inputs.
This commit is contained in:
parent
035fec27fc
commit
ba5cb6456d
1 changed files with 9 additions and 9 deletions
|
@ -5991,9 +5991,9 @@ (define-public java-commons-collections4
|
|||
(arguments
|
||||
`(#:test-target "test"
|
||||
#:make-flags
|
||||
(let ((hamcrest (assoc-ref %build-inputs "java-hamcrest-core"))
|
||||
(junit (assoc-ref %build-inputs "java-junit"))
|
||||
(easymock (assoc-ref %build-inputs "java-easymock")))
|
||||
,#~(let ((hamcrest #$(this-package-native-input "java-hamcrest-core"))
|
||||
(junit #$(this-package-native-input "java-junit"))
|
||||
(easymock #$(this-package-native-input "java-easymock")))
|
||||
(list (string-append "-Djunit.jar="
|
||||
(car (find-files junit "jar$")))
|
||||
(string-append "-Dhamcrest.jar="
|
||||
|
|
Loading…
Reference in a new issue