me
/
guix
Archived
1
0
Fork 0

gnu: java-commons-io: Replace %build-inputs with gexp.

* gnu/packages/java.scm (java-commons-io)[arguments]: Do not use
%build-inputs; use gexp with this-package-native-inputs instead.
master
Ricardo Wurmus 2021-10-24 20:02:54 +00:00
parent 4faca03bed
commit 722c4685f0
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 3 additions and 3 deletions

View File

@ -6131,9 +6131,9 @@ setter and getter method.")
(arguments
`(#:test-target "test"
#:make-flags
(list (string-append "-Djunit.jar="
(car (find-files (assoc-ref %build-inputs "java-junit")
"jar$"))))
,#~(list (string-append "-Djunit.jar="
(car (find-files #$(this-package-native-input "java-junit")
"jar$"))))
#:phases
(modify-phases %standard-phases
(add-after 'build 'build-javadoc ant-build-javadoc)