From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:44653) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fvKAT-0004Lo-16 for guix-patches@gnu.org; Thu, 30 Aug 2018 06:27:17 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fvKAJ-0005zk-4j for guix-patches@gnu.org; Thu, 30 Aug 2018 06:27:08 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:32940) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fvKAI-0005zN-07 for guix-patches@gnu.org; Thu, 30 Aug 2018 06:27:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fvKAH-0005os-Sj for guix-patches@gnu.org; Thu, 30 Aug 2018 06:27:01 -0400 Subject: [bug#32586] [PATCH] gnu: Add r-svdialogs. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:44095) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fvK9C-0003UO-3n for guix-patches@gnu.org; Thu, 30 Aug 2018 06:26:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fvK8v-0005VN-P5 for guix-patches@gnu.org; Thu, 30 Aug 2018 06:25:46 -0400 Received: from venus.bbbm.mdc-berlin.de ([141.80.25.30]:59624) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fvK8v-0005KA-C6 for guix-patches@gnu.org; Thu, 30 Aug 2018 06:25:37 -0400 Received: from localhost (localhost [127.0.0.1]) by venus.bbbm.mdc-berlin.de (Postfix) with ESMTP id 39F9438086A for ; Thu, 30 Aug 2018 12:25:18 +0200 (CEST) Received: from venus.bbbm.mdc-berlin.de ([127.0.0.1]) by localhost (venus.bbbm.mdc-berlin.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id oQqqMRFmaWGq for ; Thu, 30 Aug 2018 12:25:17 +0200 (CEST) Received: from SW-IT-P-CAS3.mdc-berlin.net (puck.citx.mdc-berlin.de [141.80.36.101]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-SHA384 (256/256 bits)) (No client certificate requested) by venus.bbbm.mdc-berlin.de (Postfix) with ESMTPS for ; Thu, 30 Aug 2018 12:25:17 +0200 (CEST) From: pimi Date: Thu, 30 Aug 2018 12:25:02 +0200 Message-ID: <20180830102502.10156-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 e6fb6b8f7..ace86c901 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -5012,3 +5012,30 @@ 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 "Standard dialog boxes for Windows, MacOS and Linux") + (description + "This package helps to construct rapidly 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