mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: maven: Propagate mvn script requirements.
* gnu/packages/maven.scm (maven)[propagated-inputs]: Add coreutils and which.
This commit is contained in:
parent
972b87b14a
commit
7504f3c3d3
1 changed files with 4 additions and 0 deletions
|
@ -23,6 +23,7 @@ (define-module (gnu packages maven)
|
|||
#:use-module (guix utils)
|
||||
#:use-module (guix build-system ant)
|
||||
#:use-module (gnu packages)
|
||||
#:use-module (gnu packages base)
|
||||
#:use-module (gnu packages compression)
|
||||
#:use-module (gnu packages java)
|
||||
#:use-module (gnu packages web)
|
||||
|
@ -1502,6 +1503,9 @@ (define-public maven
|
|||
("java-slf4j-api" ,java-slf4j-api)
|
||||
;; TODO: replace with maven-slf4j-provider
|
||||
("java-slf4j-simple" ,java-slf4j-simple)))
|
||||
(propagated-inputs
|
||||
`(("coreutils" ,coreutils)
|
||||
("which" ,which)))
|
||||
(description "Apache Maven is a software project management and comprehension
|
||||
tool. Based on the concept of a project object model: builds, dependency
|
||||
management, documentation creation, site publication, and distribution
|
||||
|
|
Loading…
Reference in a new issue