diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-12-18 17:32:16 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-12-23 20:27:47 +0100 |
commit | 607d452855b226bcb7f53000f8329fbd430a5d1f (patch) | |
tree | 3c3953d3944a182e11ce53606893f36d9d4b9ca2 /gnu | |
parent | d55aad0a1bf34f881b9bb01588c0e0c72915f3fe (diff) | |
download | guix-607d452855b226bcb7f53000f8329fbd430a5d1f.tar.gz |
gnu: classpath-0.99: Use label-less input style.
* gnu/packages/java.scm (classpath-0.99)[native-inputs]: Use new style.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/java.scm | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm index a566211b22..d8c46d5275 100644 --- a/gnu/packages/java.scm +++ b/gnu/packages/java.scm @@ -592,13 +592,10 @@ the standard javac executable."))) (add-after 'install 'install-data (lambda _ (invoke "make" "install-data")))))) (native-inputs - `(("ecj-bootstrap" ,ecj-bootstrap) - ("ecj-javac-wrapper" ,ecj-javac-wrapper) - ("fastjar" ,fastjar) - ("jamvm" ,jamvm-1-bootstrap) - ("classpath" ,classpath-bootstrap) - ("libltdl" ,libltdl) - ("pkg-config" ,pkg-config))))) + (list classpath-bootstrap + ecj-bootstrap ecj-javac-wrapper + fastjar jamvm-1-bootstrap + libltdl pkg-config)))) ;; We need this because classpath-bootstrap does not provide all of the tools ;; we need to build classpath-devel. |