packages: web-browsers: Add ungoogled-chromium-minimal/wayland

pull/3/head
Luis Guilherme Coelho 2024-06-05 16:53:52 -03:00
parent 1aaba01b6f
commit ca38da31f6
No known key found for this signature in database
GPG Key ID: 1F2E76ACE3F531C8
1 changed files with 26 additions and 0 deletions

View File

@ -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)))))