diff options
author | Christopher R. Nelson <christopher.nelson@languidnights.com> | 2024-01-07 14:17:40 -0500 |
---|---|---|
committer | Christopher R. Nelson <christopher.nelson@languidnights.com> | 2024-01-09 22:17:15 -0500 |
commit | 8c9002cf75f4e82f5dd87a2601d02983dd3e5f7d (patch) | |
tree | 6e80f68da8ad3406198e16fc93f94d6b5ae12391 /crn/packages/xdisorg.scm | |
parent | 6129b63949c0c3202704d0f00e25a0fc723dfd97 (diff) |
include rofi cherry-picked update
Diffstat (limited to 'crn/packages/xdisorg.scm')
-rw-r--r-- | crn/packages/xdisorg.scm | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/crn/packages/xdisorg.scm b/crn/packages/xdisorg.scm new file mode 100644 index 0000000..1c9cc29 --- /dev/null +++ b/crn/packages/xdisorg.scm @@ -0,0 +1,29 @@ +(define-module (crn packages xdisorg) + #:use-module (crn packages) + #:use-module (gnu packages) + #:use-module ((gnu packages xdisorg) #:prefix gpx:) + #:use-module (guix download) + #:use-module (guix gexp) + #:use-module (guix packages)) + +;; (define-public rofi +;; (package +;; (inherit gpx:rofi) +;; (version "1.7.5") +;; (source (origin +;; (method url-fetch) +;; (uri (string-append "https://github.com/davatorium/rofi/" +;; "releases/download/" +;; version "/rofi-" version ".tar.xz")) +;; (sha256 +;; (base32 +;; "138c4bl60p7namsb2pk8q5cdlxbdkli7zny192vk5jv5s5kczzya")) +;; (snippet +;; #~(begin +;; ;; Delete pre-generated files. +;; (for-each delete-file +;; (list "lexer/theme-lexer.c" +;; "lexer/theme-parser.c" +;; "lexer/theme-parser.h" +;; "resources/resources.c" +;; "resources/resources.h")))))))) |