mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: Add xclock.
* gnu/packages/xorg.scm (xclock): New variable. Signed-off-by: Marius Bakke <mbakke@fastmail.com>
This commit is contained in:
parent
07c82daad4
commit
ff75441fcf
1 changed files with 32 additions and 0 deletions
|
@ -19,6 +19,7 @@
|
||||||
;;; Copyright © 2018 Oleg Pykhalov <go.wigust@gmail.com>
|
;;; Copyright © 2018 Oleg Pykhalov <go.wigust@gmail.com>
|
||||||
;;; Copyright © 2018 Benjamin Slade <slade@jnanam.net>
|
;;; Copyright © 2018 Benjamin Slade <slade@jnanam.net>
|
||||||
;;; Copyright © 2019 nee <nee@cock.li>
|
;;; Copyright © 2019 nee <nee@cock.li>
|
||||||
|
;;; Copyright © 2019 Yoshinori Arai <kumagusu08@gmail.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -5724,6 +5725,37 @@ (define-public libxaw3d
|
||||||
Intrinsics (Xt) Library.")
|
Intrinsics (Xt) Library.")
|
||||||
(license license:x11)))
|
(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-style "file://COPYING" "See COPYING for details."))))
|
||||||
|
|
||||||
(define-public xmag
|
(define-public xmag
|
||||||
(package
|
(package
|
||||||
(name "xmag")
|
(name "xmag")
|
||||||
|
|
Loading…
Reference in a new issue