gnu: xclickroot: Update to 1.2.
* gnu/packages/wm.scm (xclickroot): Update to 1.2.
This commit is contained in:
parent
5fb3be0ec4
commit
8ff162332c
1 changed files with 27 additions and 29 deletions
|
@ -1928,36 +1928,34 @@ wasting your precious memory.")
|
||||||
(license license:x11))))
|
(license license:x11))))
|
||||||
|
|
||||||
(define-public xclickroot
|
(define-public xclickroot
|
||||||
(let ((commit "309fd17174dba4149b5ea66654c6fd02cfcf7c9a")
|
(package
|
||||||
(revision "1"))
|
(name "xclickroot")
|
||||||
(package
|
(version "1.2")
|
||||||
(name "xclickroot")
|
(source (origin
|
||||||
(version (git-version "0.0.1" revision commit)) ;no upstream release
|
(method git-fetch)
|
||||||
(source (origin
|
(uri (git-reference
|
||||||
(method git-fetch)
|
(url "https://github.com/phillbush/xclickroot")
|
||||||
(uri (git-reference
|
(commit (string-append "v" version))))
|
||||||
(url "https://github.com/phillbush/xclickroot")
|
(file-name (git-file-name name version))
|
||||||
(commit commit)))
|
(sha256
|
||||||
(file-name (git-file-name name version))
|
(base32
|
||||||
(sha256
|
"1nd5qz0qz5j7gx2jsbcp234giwaa0xmg42vrcjrcf587q9ivakfl"))))
|
||||||
(base32
|
(build-system gnu-build-system)
|
||||||
"0fjqkg3wnyks0my1vrzhxfjicsfy8xwnijaazmpz6mhilcqkpvnd"))))
|
(inputs
|
||||||
(build-system gnu-build-system)
|
`(("libx11" ,libx11)))
|
||||||
(inputs
|
(arguments
|
||||||
`(("libx11" ,libx11)))
|
`(#:tests? #f ;no test suite
|
||||||
(arguments
|
#:make-flags
|
||||||
`(#:tests? #f ;no test suite
|
(list ,(string-append "CC=" (cc-for-target))
|
||||||
#:make-flags
|
(string-append "PREFIX=" %output))
|
||||||
(list ,(string-append "CC=" (cc-for-target))
|
#:phases
|
||||||
(string-append "PREFIX=" %output))
|
(modify-phases %standard-phases
|
||||||
#:phases
|
(delete 'configure))))
|
||||||
(modify-phases %standard-phases
|
(home-page "https://github.com/phillbush/xclickroot")
|
||||||
(delete 'configure))))
|
(synopsis "Run a command when a mouse button is pressed on the root window")
|
||||||
(home-page "https://github.com/phillbush/xclickroot")
|
(description "@code{xclickroot} runs a command every time a given mouse
|
||||||
(synopsis "Run a command when a mouse button is pressed on the root window")
|
|
||||||
(description "@code{xclickroot} runs a command every time a given mouse
|
|
||||||
button is pressed on the root window.")
|
button is pressed on the root window.")
|
||||||
(license license:public-domain))))
|
(license license:public-domain)))
|
||||||
|
|
||||||
(define-public xmenu
|
(define-public xmenu
|
||||||
(package
|
(package
|
||||||
|
|
Reference in a new issue