diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2026-02-03 22:34:28 +0100 |
|---|---|---|
| committer | Cayetano Santos <csantosb@inventati.org> | 2026-02-17 08:30:21 +0100 |
| commit | 4dacefce981d1a3e14cca39c4e49d720c3604956 (patch) | |
| tree | 1beb6ce828b92b9725a24256c018af289511b476 /gnu/packages | |
| parent | f02b2fab9d3684ff84a607242fb68cb95ee390c9 (diff) | |
gnu: Add emacs-xdg-launcher.
* gnu/packages/emacs-xyz.scm (emacs-xdg-launcher): New variable.
Merges guix/guix!6108
Change-Id: Idfcdde8460606e2130949a6d17db963016c94d73
Signed-off-by: Cayetano Santos <csantosb@inventati.org>
Diffstat (limited to 'gnu/packages')
| -rw-r--r-- | gnu/packages/emacs-xyz.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index b2df110f6aa..6dbbde65916 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -4455,6 +4455,33 @@ but the design of key/command choice is based on command frequency statistics and ease-of-key score. Most frequently used commands have most easy keys.") (license license:gpl3)))) +(define-public emacs-xdg-launcher + ;; XXX: Upstream did not tag any commit so far. Base version is extracted + ;; from Version keyword. + (let ((commit "ca774d066c2049ef1bcf73ebd690664ca3fc0642") + (revision "0")) + (package + (name "emacs-xdg-launcher") + (version (git-version "0.1" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/emacs-exwm/xdg-launcher") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1k4q96zs7k6bfgkcg05zqjvkfyhaxv3q3br56y0dwi70vyn1nwjq")))) + (build-system emacs-build-system) + (arguments + (list #:tests? #f)) ; No tests upstream + (home-page "https://github.com/emacs-exwm/xdg-launcher") + (synopsis "Use Emacs standard completion to launch applications") + (description "This package defines the @code{xdg-launcher-run-app} +command, which uses Emacs standard completion to select an application +installed on your machine and launch it.") + (license license:gpl3+)))) + (define-public emacs-xr (package (name "emacs-xr") |
