some updates to guix stuff
This commit is contained in:
parent
f153aa731f
commit
d24c0913bb
7 changed files with 40 additions and 6 deletions
21
guix/pkgs/eww.scm
Normal file
21
guix/pkgs/eww.scm
Normal 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)))
|
Loading…
Add table
Add a link
Reference in a new issue