From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:49550) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fxw0w-0002vk-6o for guix-patches@gnu.org; Thu, 06 Sep 2018 11:16:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fxw0s-0007Sn-Uu for guix-patches@gnu.org; Thu, 06 Sep 2018 11:16:10 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:43266) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fxw0n-0007Kk-UL for guix-patches@gnu.org; Thu, 06 Sep 2018 11:16:05 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fxw0n-0008E0-PG for guix-patches@gnu.org; Thu, 06 Sep 2018 11:16:01 -0400 Subject: [bug#32586] [PATCH] gnu: Add r-svdialogs. References: <20180830102502.10156-1-madalinionel.patrascu@mdc-berlin.de> In-Reply-To: <20180830102502.10156-1-madalinionel.patrascu@mdc-berlin.de> Resent-Message-ID: From: pimi Date: Thu, 6 Sep 2018 17:14:50 +0200 Message-ID: <20180906151450.13012-1-madalinionel.patrascu@mdc-berlin.de> MIME-Version: 1.0 Content-Type: text/plain 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: 32586@debbugs.gnu.org Cc: pimi gnu/packages/cran.scm (r-svdialogs): New variable. --- gnu/packages/cran.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 745464ce2..46c37b8bc 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -5435,3 +5435,30 @@ Gtk2, native, ...). It centralizes info about GUI elements currently used, and it dispatches GUI calls to the particular toolkits in use in function of the context (is R run at the terminal, within a Tk application, a HTML page?).") (license license:gpl2))) + +(define-public r-svdialogs + (package + (name "r-svdialogs") + (version "1.0.0") + (source + (origin + (method url-fetch) + (uri (cran-uri "svDialogs" version)) + (sha256 + (base32 "0xqppydfawnwk84kb5qiybwbcmv38vn4imgz01mz2pnq4xb80p97")))) + (properties `((upstream-name . "svDialogs"))) + (build-system r-build-system) + (inputs + `(("yad" ,yad) + ("zenity" ,zenity))) + (propagated-inputs + `(("r-rstudioapi" ,r-rstudioapi) + ("r-svgui" ,r-svgui))) + (home-page "https://github.com/SciViews/svDialogs/") + (synopsis "Portable dialog boxes") + (description + "This package helps to construct standard dialog boxes for your GUI, including +message boxes, input boxes, list, file or directory selection, and others. In +case R cannot display GUI dialog boxes, a simpler command line version of these +interactive elements is also provided as a fallback solution.") + (license license:gpl2))) -- 2.17.1