mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-03 00:26:33 +01:00
gnu: java-sonatype-oss-parent-pom-9: Remove references to %build-inputs.
* gnu/packages/maven-parent-pom.scm (java-sonatype-oss-parent-pom-9) [arguments]: Use a gexp to remove references to %build-inputs.
This commit is contained in:
parent
98d2abe523
commit
d29f14aca2
1 changed files with 10 additions and 8 deletions
|
@ -1,5 +1,5 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2020 Julien Lepiller <julien@lepiller.eu>
|
;;; Copyright © 2020, 2021 Julien Lepiller <julien@lepiller.eu>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -20,6 +20,7 @@ (define-module (gnu packages maven-parent-pom)
|
||||||
#:use-module ((guix licenses) #:prefix license:)
|
#:use-module ((guix licenses) #:prefix license:)
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
#:use-module (guix download)
|
#:use-module (guix download)
|
||||||
|
#:use-module (guix gexp)
|
||||||
#:use-module (guix git-download)
|
#:use-module (guix git-download)
|
||||||
#:use-module (guix utils)
|
#:use-module (guix utils)
|
||||||
#:use-module (guix build-system ant)
|
#:use-module (guix build-system ant)
|
||||||
|
@ -321,14 +322,15 @@ (define-public java-sonatype-oss-parent-pom-9
|
||||||
(base32
|
(base32
|
||||||
"0yl2hbwz2kn1hll1i00ddzn8f89bfdcjwdifz0pj2j15k1gjch7v"))))
|
"0yl2hbwz2kn1hll1i00ddzn8f89bfdcjwdifz0pj2j15k1gjch7v"))))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f
|
(list
|
||||||
|
#:tests? #f
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
(delete 'unpack)
|
(delete 'unpack)
|
||||||
(delete 'configure)
|
(delete 'configure)
|
||||||
(delete 'build)
|
(delete 'build)
|
||||||
(replace 'install
|
(replace 'install
|
||||||
(install-pom-file (assoc-ref %build-inputs "source")))))))))
|
(install-pom-file #$(package-source this-package)))))))))
|
||||||
|
|
||||||
(define* (make-plexus-parent-pom version hash #:optional parent)
|
(define* (make-plexus-parent-pom version hash #:optional parent)
|
||||||
(hidden-package
|
(hidden-package
|
||||||
|
|
Loading…
Reference in a new issue