From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:54282) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gp2aE-00058Z-22 for guix-patches@gnu.org; Wed, 30 Jan 2019 22:00:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gp2aB-0004jA-Vr for guix-patches@gnu.org; Wed, 30 Jan 2019 22:00:06 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:52786) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gp2aB-0004il-Mo for guix-patches@gnu.org; Wed, 30 Jan 2019 22:00:03 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gp2aB-0006gB-Dq for guix-patches@gnu.org; Wed, 30 Jan 2019 22:00:03 -0500 Subject: [bug#34261] [PATCH]Add xclock Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:53604) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gp2VR-0004X3-2O for guix-patches@gnu.org; Wed, 30 Jan 2019 21:55:09 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gp2VQ-0002Sz-1y for guix-patches@gnu.org; Wed, 30 Jan 2019 21:55:09 -0500 Received: from mail-pg1-x529.google.com ([2607:f8b0:4864:20::529]:33277) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gp2VP-0002S8-SG for guix-patches@gnu.org; Wed, 30 Jan 2019 21:55:07 -0500 Received: by mail-pg1-x529.google.com with SMTP id z11so738500pgu.0 for ; Wed, 30 Jan 2019 18:55:06 -0800 (PST) Received: from localhost ([2409:11:4a40:3600:afd4:3247:4a32:242a]) by smtp.gmail.com with ESMTPSA id e24sm4280355pfi.153.2019.01.30.18.55.03 for (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Wed, 30 Jan 2019 18:55:04 -0800 (PST) Date: Thu, 31 Jan 2019 11:55:01 +0900 From: Yoshinori Arai Message-ID: <20190131025501.xsapnvpftq2m627y@WaraToNora> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline 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: 34261@debbugs.gnu.org Hello, my first patch. gnu: Add xclock 1 file changed, 30 insertions(+) gnu/packages/xdisorg.scm | 30 ++++++++++++++++++++++++++++++ modified gnu/packages/xdisorg.scm @@ -294,6 +294,36 @@ between desktops, and change the number of desktops.") following the mouse.") (license license:x11))) +(define-public xclock + (package + (name "xclock") + (version "1.0.7") + (source + (origin + (method url-fetch) + (uri (string-append "https://www.x.org/releases/individual/app/" + name "-" version ".tar.bz2")) + (sha256 + (base32 "1l3xv4bsca6bwxx73jyjz0blav86i7vwffkhdb1ac81y9slyrki3")))) + (build-system gnu-build-system) + (arguments + `(#:configure-flags + (list (string-append "--with-appdefaultdir=" + %output ,%app-defaults-dir)))) + (inputs + `(("libxmu" ,libxmu) + ("libx11" ,libx11) + ("libxaw" ,libxaw) + ("libxrender" ,libxrender) + ("libxft" ,libxft) + ("libxkbfile" ,libxkbfile))) + (native-inputs + `(("pkg-config" ,pkg-config))) + (home-page "https://www.x.org/") + (synopsis "Analog / digital clock for X") + (description "The xclock program displays the time in analog or digital + form.") + (license license:x11))) (define-public pixman (package