diff options
author | Yovan Naumovski <yovan@gorski.stream> | 2023-02-20 23:35:18 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-02-24 11:55:13 +0100 |
commit | 5957ac3bb360bc8a99af5ca0a12210df5225a38d (patch) | |
tree | 47f635f165f73582ab9791eef1e9cfd235e5b759 | |
parent | 4d5ac8dad0b64c650caa07b585a6bc9903dcb28f (diff) | |
download | guix-5957ac3bb360bc8a99af5ca0a12210df5225a38d.tar.gz guix-5957ac3bb360bc8a99af5ca0a12210df5225a38d.zip |
gnu: Add tofi.
* gnu/packages/xdisorg.scm (tofi): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
-rw-r--r-- | gnu/packages/xdisorg.scm | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm index b4f0235d3b..ec5cdbdc28 100644 --- a/gnu/packages/xdisorg.scm +++ b/gnu/packages/xdisorg.scm @@ -1980,6 +1980,36 @@ border, and background. It also supports multihead setups, customized mouse actions, a built-in clock, a battery monitor and a system tray.") (license license:gpl2))) +(define-public tofi + (package + (name "tofi") + (version "0.8.1") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/philj56/tofi") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "11bfi9his0cc5mzikamr5icv5mh2fyj9jy5l3sbbayj6jk51f68y")))) + (build-system meson-build-system) + (arguments + (list #:meson meson-0.63)) ;requires meson 0.61 or later + (native-inputs (list pkg-config)) + (inputs (list cairo + harfbuzz + libxkbcommon + pango + wayland + wayland-protocols)) + (home-page "https://github.com/philj56/tofi") + (synopsis "Application launcher for Wayland") + (description + "Tofi is a Dmenu and Rofi replacement for wlroots-based Wayland +compositors such as Sway.") + (license license:expat))) + (define-public dzen (let ((commit "488ab66019f475e35e067646621827c18a879ba1") (revision "1")) |