gnu: maven-components-parent-pom-22: Remove references to %build-inputs.

* gnu/packages/maven-parent-pom.scm (maven-components-parent-pom-22)
[arguments]: Use a gexp to remove references to %build-inputs.
This commit is contained in:
Julien Lepiller 2021-12-04 20:12:28 +01:00
parent d29f14aca2
commit 2aee138485
No known key found for this signature in database
GPG key ID: 53D457B2D636EE82

View file

@ -518,14 +518,15 @@ (define-public maven-components-parent-pom-22
"11skhrjgrrs6z5rw1w39ap1pzhrc99g0czip10kz7wsavg746ibm"))))
(build-system ant-build-system)
(arguments
`(#:tests? #f
(list
#:tests? #f
#:phases
(modify-phases %standard-phases
(delete 'unpack)
(delete 'build)
(delete 'configure)
(replace 'install
(install-pom-file (assoc-ref %build-inputs "source"))))))
#~(modify-phases %standard-phases
(delete 'unpack)
(delete 'build)
(delete 'configure)
(replace 'install
(install-pom-file #$(package-source this-package))))))
(propagated-inputs
`(("maven-parent-pom-27" ,maven-parent-pom-27)))
(home-page "https://apache.org/maven")