From mboxrd@z Thu Jan 1 00:00:00 1970 From: Yoshinori Arai Subject: xclock package Date: Sat, 12 Jan 2019 06:25:54 +0900 Message-ID: <20190111104756.2wh5jwh5u6alvytn@WaraToNora> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([209.51.188.92]:55703) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gi4PP-0007jX-CI for help-guix@gnu.org; Fri, 11 Jan 2019 16:32:08 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gi4JS-00040N-VO for help-guix@gnu.org; Fri, 11 Jan 2019 16:25:59 -0500 Received: from mail-pl1-x635.google.com ([2607:f8b0:4864:20::635]:36981) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gi4JS-0003wz-PL for help-guix@gnu.org; Fri, 11 Jan 2019 16:25:58 -0500 Received: by mail-pl1-x635.google.com with SMTP id b5so7306328plr.4 for ; Fri, 11 Jan 2019 13:25:58 -0800 (PST) Received: from localhost ([2409:11:4a40:3600:afd4:3247:4a32:242a]) by smtp.gmail.com with ESMTPSA id u126sm184373364pgb.2.2019.01.11.13.25.55 for (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Fri, 11 Jan 2019 13:25:56 -0800 (PST) Content-Disposition: inline List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-guix-bounces+gcggh-help-guix=m.gmane.org@gnu.org Sender: "Help-Guix" To: help-guix@gnu.org There is no xclock package in guix. I made it. How can I add it to duix package, maybe in xdisorg.scm. (use-modules (guix packages) (guix download) (gnu packages pkg-config) (gnu packages xorg) (guix build-system gnu) ((guix licenses) #:prefix license:)) (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. The time is continuously updated at a frequency which may be specified by the user.") (license license:x11))