mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: Add bemenu.
* gnu/packages/xdisorg.scm (bemenu): New public variable. Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr>
This commit is contained in:
parent
532dba49ca
commit
2f490bf3d6
1 changed files with 38 additions and 0 deletions
|
@ -27,6 +27,7 @@
|
||||||
;;; Copyright © 2018 Nam Nguyen <namn@berkeley.edu>
|
;;; Copyright © 2018 Nam Nguyen <namn@berkeley.edu>
|
||||||
;;; Copyright © 2019 Wiktor Żelazny <wzelazny@vurv.cz>
|
;;; Copyright © 2019 Wiktor Żelazny <wzelazny@vurv.cz>
|
||||||
;;; Copyright © 2019 Kyle Andrews <kyle.c.andrews@gmail.com>
|
;;; Copyright © 2019 Kyle Andrews <kyle.c.andrews@gmail.com>
|
||||||
|
;;; Copyright © 2019 Josh Holland <josh@inv.alid.pw>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -190,6 +191,43 @@ (define-public autorandr
|
||||||
used to further tweak the behaviour of the different profiles.")
|
used to further tweak the behaviour of the different profiles.")
|
||||||
(license license:gpl3+))))
|
(license license:gpl3+))))
|
||||||
|
|
||||||
|
(define-public bemenu
|
||||||
|
(package
|
||||||
|
(name "bemenu")
|
||||||
|
(version "0.2.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/Cloudef/bemenu.git")
|
||||||
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "0piax49az5kp96r1g6dcgj87fi6p4jl286wlkxsdvljzpkn8q6gv"))))
|
||||||
|
(build-system cmake-build-system)
|
||||||
|
(arguments
|
||||||
|
'(#:configure-flags '("-DBEMENU_WAYLAND_RENDERER=ON")))
|
||||||
|
(inputs
|
||||||
|
`(("cairo" ,cairo)
|
||||||
|
("libx11" ,libx11)
|
||||||
|
("libxkbcomon" ,libxkbcommon)
|
||||||
|
("libxinerama" ,libxinerama)
|
||||||
|
("ncurses" ,ncurses)
|
||||||
|
("pango" ,pango)
|
||||||
|
("wayland" ,wayland)
|
||||||
|
("wayland-protocols" ,wayland-protocols)))
|
||||||
|
(native-inputs
|
||||||
|
`(("doxygen" ,doxygen)
|
||||||
|
("pkg-config" ,pkg-config)))
|
||||||
|
(home-page "https://github.com/Cloudef/bemenu")
|
||||||
|
(synopsis "Dynamic menu library and client program inspired by dmenu")
|
||||||
|
(description
|
||||||
|
"bemenu is a dynamic menu which allows the user to flexibly select from a
|
||||||
|
list of options (usually programs to launch). It renders the menu graphically
|
||||||
|
with X11 or Wayland, or in a text terminal with ncurses.")
|
||||||
|
(license (list license:gpl3+ ; client program[s] and other sources
|
||||||
|
license:lgpl3+)))) ; library and bindings
|
||||||
|
|
||||||
(define-public xclip
|
(define-public xclip
|
||||||
(package
|
(package
|
||||||
(name "xclip")
|
(name "xclip")
|
||||||
|
|
Loading…
Reference in a new issue