soundtracker: add pulse support

This commit is contained in:
Grimmauld
2025-11-11 09:31:28 +01:00
parent 9cad29cab5
commit 41b2a9af7c
+5 -1
View File
@@ -12,6 +12,7 @@
goocanvas, # graphical envelope editing
libxml2,
libsndfile,
libpulseaudio,
}:
stdenv.mkDerivation (finalAttrs: {
@@ -69,7 +70,10 @@ stdenv.mkDerivation (finalAttrs: {
libxml2 # found by PKG_CHECK_MODULES
libsndfile
]
++ lib.optional stdenv.hostPlatform.isLinux alsa-lib;
++ lib.optionals stdenv.hostPlatform.isLinux [
alsa-lib # found by AM_PATH_ALSA
libpulseaudio # found by PKG_CHECK_MODULES
];
meta = with lib; {
description = "Music tracking tool similar in design to the DOS program FastTracker and the Amiga legend ProTracker";