From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:56572) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hMXpO-0006hL-9W for guix-patches@gnu.org; Fri, 03 May 2019 09:02:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hMXpJ-0000k5-Dv for guix-patches@gnu.org; Fri, 03 May 2019 09:02:14 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:34530) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hMXpJ-0000jt-9k for guix-patches@gnu.org; Fri, 03 May 2019 09:02:09 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hMXpH-0005tt-3i for guix-patches@gnu.org; Fri, 03 May 2019 09:02:09 -0400 Subject: [bug#35545] [PATCH 10/17] gnu: Add java-openjfx-media. Resent-Message-ID: From: Julien Lepiller Date: Fri, 3 May 2019 15:01:27 +0200 Message-Id: <20190503130134.24788-10-julien@lepiller.eu> In-Reply-To: <20190503130134.24788-1-julien@lepiller.eu> References: <20190503145820.606f37db@sybil.lepiller.eu> <20190503130134.24788-1-julien@lepiller.eu> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 35545@debbugs.gnu.org * gnu/packages/java.scm (java-openjfx-media): New variable. --- gnu/packages/java.scm | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm index 2f9b0374f8..b9ac4459b0 100644 --- a/gnu/packages/java.scm +++ b/gnu/packages/java.scm @@ -2305,6 +2305,21 @@ is to produce a modern, efficient, and fully featured toolkit for developing rich client applications. This package contains graphics-related classes for the OpenJFX distribution."))) +(define-public java-openjfx-media + (package (inherit java-openjfx-build) + (name "java-openjfx-media") + (propagated-inputs + `(("java-openjxf-graphics" ,java-openjfx-graphics))) + (arguments + `(#:jar-name "java-openjfx-media.jar" + #:source-dir "modules/media/src/main/java" + #:tests? #f)); no tests + (description "OpenJFX is a free, next generation 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 media-related classes for +the OpenJFX distribution."))) + (define-public javacc-4 (package (name "javacc") -- 2.21.0