From 62de2e063f7bfd4a7f962a6fd8a7cc536de74320 Mon Sep 17 00:00:00 2001 From: SqrtMinusOne Date: Fri, 29 Oct 2021 21:03:15 +0300 Subject: [PATCH] Revert "feat(rofi-emoji): add" This reverts commit 96674b57dc8ae7b197f0ece714b2bc66148ab788. --- README.org | 1 - rofi-emoji.scm | 52 -------------------------------------------------- 2 files changed, 53 deletions(-) delete mode 100644 rofi-emoji.scm diff --git a/README.org b/README.org index 358a444..25e46f9 100644 --- a/README.org +++ b/README.org @@ -11,7 +11,6 @@ I'll probably push what I can upstream when I figure Guix out. | [[https://yadm.io/][yadm]] | OK | Check for implicit dependencies; description | | [[https://github.com/SqrtMinusOne/mpd-watcher][mpd-watcher]] | OK | | | [[https://github.com/nikola-kocic/i3-switch-tabs][i3-switch-tabs]] | OK | | -| [[https://github.com/Mange/rofi-emoji][rofi-emoji]] | OK | | | [[https://github.com/risacher/sunwait][sunwait]] | OK | Version number | | [[https://github.com/alfredopalhares/openvpn-update-resolv-conf][openvpn-update-resolv-conf]] | OK | Just watch out for $PATH if launched from OpenVPN | | [[https://github.com/yt-dlp/yt-dlp][yt-dlp]] | OK | | diff --git a/rofi-emoji.scm b/rofi-emoji.scm deleted file mode 100644 index 293cca1..0000000 --- a/rofi-emoji.scm +++ /dev/null @@ -1,52 +0,0 @@ -(define-module (rofi-emoji) - #:use-module (guix licenses) - #:use-module (guix packages) - #:use-module (guix build-system gnu) - #:use-module (guix git-download) - #:use-module (gnu packages autotools) - #:use-module (gnu packages pkg-config) - #:use-module (gnu packages glib) - #:use-module (gnu packages gnome) - #:use-module (gnu packages gtk) - #:use-module ((guix licenses) #:prefix license:) - #:use-module (gnu packages xdisorg)) - -(define-public rofi-emoji - (package - (name "rofi-emoji") - (version "2.2.0") - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/Mange/rofi-emoji") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "01f9nw54mbwlj00mclf7qc2y95riaihzznbbmp0wc4c52pvxki4q")))) - (build-system gnu-build-system) - (arguments - `(#:phases (modify-phases %standard-phases - (add-after 'unpack 'fix-rofi-plugin-dir - (lambda* (#:key outputs #:allow-other-keys) - (let ((out (string-append (assoc-ref outputs "out")))) - (substitute* "configure.ac" - (("\\[rofi_PLUGIN_INSTALL_DIR\\]=.*") - (format #f "[rofi_PLUGIN_INSTALL_DIR]=\"~a/lib/rofi\"\n" out))))))))) - (native-inputs - `(("autoconf" ,autoconf) - ("libtool" ,libtool) - ("pkg-config" ,pkg-config) - ("automake" ,automake))) - (inputs - `(("cairo" ,cairo) - ("glib" ,glib) - ("libnotify" ,libnotify) - ("rofi" ,rofi) - ("wl-clipboard" ,wl-clipboard) - ("xsel" ,xsel) - ("xclip" ,xclip))) - (synopsis "Emoji selector plugin for Rofi") - (description "An emoji selector plugin for Rofi that copies the selected emoji to the clipboard.") - (home-page "https://github.com/Mange/rofi-emoji") - (license license:expat)))