roptat pushed a commit to branch core-updates-frozen
in repository guix.
commit 2aee138485c429db585cf2adc194e7c9203958e3
Author: Julien Lepiller <[email protected]>
AuthorDate: Sat Dec 4 20:12:28 2021 +0100
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.
---
gnu/packages/maven-parent-pom.scm | 15 ++++++++-------
1 file changed, 8 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/maven-parent-pom.scm
b/gnu/packages/maven-parent-pom.scm
index 27f0926..8df4d97 100644
--- a/gnu/packages/maven-parent-pom.scm
+++ b/gnu/packages/maven-parent-pom.scm
@@ -518,14 +518,15 @@ tool. This package contains the Maven parent POM.")
"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")