From: Yoshinori Arai <kumagusu08@gmail.com>
To: help-guix@gnu.org
Subject: xclock package
Date: Sat, 12 Jan 2019 06:25:54 +0900 [thread overview]
Message-ID: <20190111104756.2wh5jwh5u6alvytn@WaraToNora> (raw)
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))
next reply other threads:[~2019-01-11 21:32 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-01-11 21:25 Yoshinori Arai [this message]
2019-01-11 22:20 ` xclock package Leo Famulari
2019-01-12 3:54 ` Yoshinori Arai
2019-01-12 9:05 ` Pierre Neidhardt
2019-01-12 9:30 ` Yoshinori Arai
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20190111104756.2wh5jwh5u6alvytn@WaraToNora \
--to=kumagusu08@gmail.com \
--cc=help-guix@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.