mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add numlockx.
* gnu/packages/xdisorg.scm (numlockx): New variable.
This commit is contained in:
parent
099bb0175f
commit
903378910e
1 changed files with 24 additions and 0 deletions
|
@ -1497,3 +1497,27 @@ (define-public python-pyperclip
|
|||
"Pyperclip is a clipboard module for Python, handling copy/pasting from
|
||||
the X11 clipboard")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public numlockx
|
||||
(package
|
||||
(name "numlockx")
|
||||
(version "1.2")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
;; It seems that upstream is gone.
|
||||
(url "https://github.com/rg3/numlockx")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"1w49fayhwzn5rx0z1q2lrvm7z8jrd34lgb89p853a024bixc3cf2"))))
|
||||
(build-system gnu-build-system)
|
||||
(inputs
|
||||
`(("xorg-server" ,xorg-server)))
|
||||
(home-page "https://github.com/rg3/numlockx")
|
||||
(synopsis "Turns on the numlock key in X11")
|
||||
(description "@command{numlockx} is a tiny program that lets you turn on
|
||||
the numlock key in X11. It can be called from the user's initialization files
|
||||
to automatically turn it on on login.")
|
||||
(license license:expat)))
|
||||
|
|
Loading…
Reference in a new issue