mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add java-openjfx-controls.
* gnu/packages/java.scm (java-openjfx-controls): New variable.
This commit is contained in:
parent
526b5b106e
commit
f0971dfd61
1 changed files with 27 additions and 0 deletions
|
@ -2721,6 +2721,33 @@ modern, efficient, and fully featured toolkit for developing rich client
|
||||||
applications. This package contains media-related classes for the
|
applications. This package contains media-related classes for the
|
||||||
OpenJFX distribution.")))
|
OpenJFX distribution.")))
|
||||||
|
|
||||||
|
(define-public java-openjfx-controls
|
||||||
|
(package (inherit java-openjfx-build)
|
||||||
|
(name "java-openjfx-controls")
|
||||||
|
(propagated-inputs
|
||||||
|
`(("java-openjxf-graphics" ,java-openjfx-graphics)))
|
||||||
|
(arguments
|
||||||
|
`(#:jar-name "java-openjfx-controls.jar"
|
||||||
|
#:source-dir "modules/controls/src/main/java"
|
||||||
|
#:test-dir "modules/controls/src/test"
|
||||||
|
;; TODO: tests require com.sun.javafx.pgstub,
|
||||||
|
;; javafx.collections.MockSetObserver, and
|
||||||
|
;; com.sun.javafx.binding.ExpressionHelperUtility
|
||||||
|
#:tests? #false
|
||||||
|
#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'copy-resources
|
||||||
|
(lambda _
|
||||||
|
(copy-recursively "modules/controls/src/test/resources"
|
||||||
|
"build/test-classes")
|
||||||
|
(copy-recursively "modules/controls/src/main/resources"
|
||||||
|
"build/classes"))))))
|
||||||
|
(description "OpenJFX is a client application platform for desktop,
|
||||||
|
mobile and embedded systems built on Java. Its goal is to produce a
|
||||||
|
modern, efficient, and fully featured toolkit for developing rich client
|
||||||
|
applications. This package contains UI control classes for the
|
||||||
|
OpenJFX distribution.")))
|
||||||
|
|
||||||
(define-public javacc-4
|
(define-public javacc-4
|
||||||
(package
|
(package
|
||||||
(name "javacc")
|
(name "javacc")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue