some updates to guix stuff

This commit is contained in:
Chris Cochrun 2023-10-23 09:19:58 -05:00
parent f153aa731f
commit d24c0913bb
7 changed files with 40 additions and 6 deletions

View file

@ -1,7 +1,7 @@
(define-module (pkgs dolphin-xyz)
#:use-module (gnu packages)
#:use-module (gnu packages qt)
#:use-module (gnu packages wayland)
#:use-module (gnu packages freedesktop)
#:use-module (gnu packages kde)
#:use-module (gnu packages kde-frameworks)
#:use-module (gnu packages kde-systemtools)

View file

@ -63,6 +63,12 @@ marked files in a dired buffer via rsync."))))
emacs-s))
(license license:gpl3+)
(home-page "https://github.com/isamert/empv.el.git")
(synopsis "dired-rsync asynchronous rsync from dired")
(description "\
This package adds the command empv for playing mpv videos from emacs."))))
(synopsis "A multimedia player/manager, YouTube interface")
(description "An Emacs media player, based on mpv. More precisely this package provides
somewhat comprehensive interface to mpv with bunch of convenient functionality
like an embedded radio manager, @code{YouTube} interface, local music/video
library manager etc. Lots of interactive functions are at your disposal. To
view the most essential ones, type `M-x describe-keymap empv-map`. It is
advised that you bind this keymap to a key for convenience. Additionally, empv
has versatile customization options. For an overview of all customization
options, do `M-x customize-group empv`."))))

21
guix/pkgs/eww.scm Normal file
View file

@ -0,0 +1,21 @@
(define-module (pkgs eww))
(define-public eww
(package
(name "eww")
(version "0.0.1-alpha.2")
(source
(origin
(method url-fetch)
(uri (crate-uri "eww" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0j583vh5kn0k1adsh0q8mdscadlsqximd9scs76sg2n7jy4x19bi"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs (("rust-egui-wgpu" ,rust-egui-wgpu-0.0.1)
("rust-egui-winit" ,rust-egui-winit-0.0.1))))
(home-page "https://github.com/LU15W1R7H/eww")
(synopsis "egui backend (winit + wgpu)")
(description "egui backend (winit + wgpu)")
(license license:asl2.0)))