packages: web-browsers: Add ungoogled-chromium-minimal/wayland
parent
1aaba01b6f
commit
ca38da31f6
|
@ -0,0 +1,26 @@
|
|||
(define-module (radix packages web-browsers)
|
||||
#:use-module (ice-9 match)
|
||||
#:use-module (guix gexp)
|
||||
#:use-module (guix packages)
|
||||
#:use-module (guix utils)
|
||||
#:use-module (gnu packages chromium))
|
||||
|
||||
(define-public ungoogled-chromium-minimal/wayland
|
||||
(package/inherit ungoogled-chromium/wayland
|
||||
(inputs
|
||||
(filter (match-lambda
|
||||
((package-name _)
|
||||
(not (member package-name
|
||||
`("libx11"
|
||||
"libxcb"
|
||||
"libxcomposite"
|
||||
"libxcursor"
|
||||
"libxdamage"
|
||||
"libxext"
|
||||
"libxfixes"
|
||||
"libxi"
|
||||
"libxrandr"
|
||||
"libxrender"
|
||||
"libxscrnsaver"
|
||||
"pulseaudio")))))
|
||||
(package-inputs ungoogled-chromium/wayland)))))
|
Loading…
Reference in New Issue