diff options
| author | Vineet Kumar <git@vineetk.net> | 2026-03-10 01:59:33 -0400 |
|---|---|---|
| committer | Vineet Kumar <git@vineetk.net> | 2026-03-10 01:59:33 -0400 |
| commit | c98798b262d252e5852040eb7ad213f27f6b3410 (patch) | |
| tree | 02ec49609c6c67ae64bed2b842ce084cc1e7b7c9 | |
| parent | 6ced00419b38aa73796b4504c54488d949aae096 (diff) | |
demiurge, home: switch to using pipewire instead of jack
making all programs from guix work with jack is a massive pain and I
got burnt out, where I spent more time making stuff work with jack
than doing actual work (part of why I switched away from gentoo in the
first place)
| -rw-r--r-- | epistemia/packages/qt.scm | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/epistemia/packages/qt.scm b/epistemia/packages/qt.scm deleted file mode 100644 index 1c3c373..0000000 --- a/epistemia/packages/qt.scm +++ /dev/null | |||
| @@ -1,21 +0,0 @@ | |||
| 1 | (define-module (epistemia packages qt) | ||
| 2 | #:use-module (guix packages) | ||
| 3 | #:use-module (guix download) | ||
| 4 | #:use-module (guix gexp) | ||
| 5 | #:use-module (guix utils) | ||
| 6 | #:use-module (gnu packages audio) | ||
| 7 | #:use-module (gnu packages qt)) | ||
| 8 | |||
| 9 | (define-public qtmultimedia-jack | ||
| 10 | (package | ||
| 11 | (inherit qtmultimedia) | ||
| 12 | (name "qtmultimedia") | ||
| 13 | (arguments | ||
| 14 | (substitute-keyword-arguments (package-arguments qtmultimedia) | ||
| 15 | ((#:configure-flags flags #~'()) | ||
| 16 | #~(append (delete "-DQT_FEATURE_pulseaudio=ON" #$flags) | ||
| 17 | (list "-DQT_FEATURE_pulseaudio=OFF" | ||
| 18 | "-DQT_FEATURE_jack=ON"))))) | ||
| 19 | (inputs | ||
| 20 | (modify-inputs (package-inputs qtmultimedia) | ||
| 21 | (replace "pulseaudio" jack-2))))) | ||
