From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:42556) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jEBxv-0001SB-6p for guix-patches@gnu.org; Tue, 17 Mar 2020 09:09:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jEBxu-0002IQ-5p for guix-patches@gnu.org; Tue, 17 Mar 2020 09:09:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:60543) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jEBxu-0002HA-1b for guix-patches@gnu.org; Tue, 17 Mar 2020 09:09:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jEBxt-00064w-Rx for guix-patches@gnu.org; Tue, 17 Mar 2020 09:09:01 -0400 Subject: [bug#40101] [PATCH 2/3] gnu: Add r-getpass References: <0HD-jgnK1IoX44ACJuDfTEKl0iDqgtcVvhNk_Vxq3ULgY_-w2uDojCmYtBRcziY84KfTy4Fc6LxUPuJYt-iitM0U3cZ_DrsqCHB0sjl2GZk=@protonmail.com> In-Reply-To: <0HD-jgnK1IoX44ACJuDfTEKl0iDqgtcVvhNk_Vxq3ULgY_-w2uDojCmYtBRcziY84KfTy4Fc6LxUPuJYt-iitM0U3cZ_DrsqCHB0sjl2GZk=@protonmail.com> Resent-Message-ID: Date: Tue, 17 Mar 2020 13:08:25 +0000 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable 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" Reply-to: Todor Kondić , Todor Kondić via Guix-patches From: Todor Kondić via Guix-patches via To: "40101@debbugs.gnu.org" <40101@debbugs.gnu.org> * gnu/packages/statistics.scm (r-getpass) : New variable. --- gnu/packages/statistics.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 7e3b62c035..f161e6092e 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -5844,3 +5844,28 @@ various statistical analysis programs such as R, Jul= ia, and JAGS.") (description "Utilities for secure password hashing via the argon2 algorithm.") (license license:bsd-2))) + +(define-public r-getpass + (package + (name "r-getpass") + (version "0.2-2") + (source + (origin + (method url-fetch) + (uri (cran-uri "getPass" version)) + (sha256 + (base32 + "03ydafhh0sk3rcnpr3paajyji64x2ddp6p814p9mvbmyrblcgzcc")))) + (properties `((upstream-name . "getPass"))) + (build-system r-build-system) + (propagated-inputs + `(("r-rstudioapi" ,r-rstudioapi))) + (home-page + "https://github.com/wrathematics/getPass") + (synopsis "Masked User Input") + (description + "This package provides a micro-package for reading \"passwords\", i.= e. +reading user input with masking, so that the input is not displayed as it = is +typed. Currently, RStudio, the command line (every OS), and any platform +where tcltk is present are supported.") + (license license:bsd-2))) -- 2.25.0