all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* xclock package
@ 2019-01-11 21:25 Yoshinori Arai
  2019-01-11 22:20 ` Leo Famulari
  0 siblings, 1 reply; 5+ messages in thread
From: Yoshinori Arai @ 2019-01-11 21:25 UTC (permalink / raw)
  To: help-guix

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))

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2019-01-12  9:30 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-01-11 21:25 xclock package Yoshinori Arai
2019-01-11 22:20 ` Leo Famulari
2019-01-12  3:54   ` Yoshinori Arai
2019-01-12  9:05     ` Pierre Neidhardt
2019-01-12  9:30       ` Yoshinori Arai

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.