fixing up the guix config
This commit is contained in:
parent
adc1daf421
commit
a055f7e71e
9 changed files with 125 additions and 64 deletions
|
@ -2,9 +2,8 @@
|
|||
|
||||
(define-module (pkgs emacs-xyz)
|
||||
#:use-module (gnu packages)
|
||||
#:use-module (gnu packages vim)
|
||||
#:use-module (gnu packages rust-apps)
|
||||
#:use-module (gnu packages video)
|
||||
#:use-module (gnu packages emacs)
|
||||
#:use-module (gnu packages emacs-xyz)
|
||||
#:use-module (gnu packages gnupg)
|
||||
#:use-module (gnu services)
|
||||
#:use-module (guix gexp)
|
||||
|
@ -37,3 +36,33 @@
|
|||
(description "\
|
||||
This package adds the command dired-rsync which allows the user to copy
|
||||
marked files in a dired buffer via rsync."))))
|
||||
|
||||
(define-public emacs-empv
|
||||
(let ((commit "4af3b3624a4714558081d693c91602b9304e8fcb")
|
||||
(revision "0"))
|
||||
(package
|
||||
(name "emacs-empv")
|
||||
(version (git-version "0.0.1" revision commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/isamert/empv.el.git")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"07xwxqjzah7dg62q0sz6ii8gi1aianqzp51aqql7mg8hyssjzpyj"))))
|
||||
(build-system emacs-build-system)
|
||||
(arguments (list #:emacs emacs))
|
||||
|
||||
(propagated-inputs
|
||||
(list emacs-consult
|
||||
emacs-map
|
||||
emacs-seq
|
||||
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."))))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue