diff options
Diffstat (limited to 'modules/ryan-packages')
-rw-r--r-- | modules/ryan-packages/mozilla.scm | 21 |
1 files changed, 8 insertions, 13 deletions
diff --git a/modules/ryan-packages/mozilla.scm b/modules/ryan-packages/mozilla.scm index 1e87336..86a1485 100644 --- a/modules/ryan-packages/mozilla.scm +++ b/modules/ryan-packages/mozilla.scm | |||
@@ -9,20 +9,15 @@ | |||
9 | #:use-module (guix build-system trivial) | 9 | #:use-module (guix build-system trivial) |
10 | #:use-module (nongnu packages mozilla)) | 10 | #:use-module (nongnu packages mozilla)) |
11 | 11 | ||
12 | (define firefox* | 12 | (define-public firefox-wrapped |
13 | (package/inherit | ||
14 | firefox | ||
15 | (inputs | ||
16 | (modify-inputs | ||
17 | (package-inputs firefox) | ||
18 | (delete "pipewire") | ||
19 | (append pipewire))))) | ||
20 | |||
21 | (define-public firefox-wayland-new | ||
22 | (package | 13 | (package |
23 | (inherit firefox) | 14 | (name "firefox-wrapped") |
24 | (name "firefox-wayland-new") | 15 | (source #f) |
25 | (native-inputs '()) | 16 | (version "0.1") |
17 | (synopsis "Simple wrapper for pipewire in firefox") | ||
18 | (description "Simple wrapper for pipewire in firefox") | ||
19 | (home-page "http://mozilla.org/") | ||
20 | (license license:mpl2.0) | ||
26 | (inputs | 21 | (inputs |
27 | `(("bash" ,bash-minimal) | 22 | `(("bash" ,bash-minimal) |
28 | ("pipewire" ,pipewire) | 23 | ("pipewire" ,pipewire) |