summary refs log tree commit diff
path: root/pkgs/applications/audio/rosegarden
diff options
context:
space:
mode:
authorMatthias Wimmer <m@tthias.eu>2020-01-19 14:39:40 +0100
committerMatthias Wimmer <m@tthias.eu>2020-01-19 14:39:40 +0100
commitebb3fa0f7c7365038a7393e6a5c90ea8e2614e13 (patch)
tree83a8c757a839a2f949168051775d96ca2a2992f8 /pkgs/applications/audio/rosegarden
parent7db4b67267ffdc6bf2479a195f4a7fade8c91193 (diff)
downloadnixpkgs-ebb3fa0f7c7365038a7393e6a5c90ea8e2614e13.tar
nixpkgs-ebb3fa0f7c7365038a7393e6a5c90ea8e2614e13.tar.gz
nixpkgs-ebb3fa0f7c7365038a7393e6a5c90ea8e2614e13.tar.bz2
nixpkgs-ebb3fa0f7c7365038a7393e6a5c90ea8e2614e13.tar.lz
nixpkgs-ebb3fa0f7c7365038a7393e6a5c90ea8e2614e13.tar.xz
nixpkgs-ebb3fa0f7c7365038a7393e6a5c90ea8e2614e13.tar.zst
nixpkgs-ebb3fa0f7c7365038a7393e6a5c90ea8e2614e13.zip
rosegarden: add alsaLib as a dependency
Without ALSA rosegarden will be built without MIDI support.

Fixes #77988
Diffstat (limited to 'pkgs/applications/audio/rosegarden')
-rw-r--r--pkgs/applications/audio/rosegarden/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/applications/audio/rosegarden/default.nix b/pkgs/applications/audio/rosegarden/default.nix
index 7c4cefb6ba4..aaceab6dc08 100644
--- a/pkgs/applications/audio/rosegarden/default.nix
+++ b/pkgs/applications/audio/rosegarden/default.nix
@@ -1,5 +1,5 @@
 { stdenv, fetchurl, cmake, makedepend, perl, pkgconfig, qttools, wrapQtAppsHook
-, dssi, fftwSinglePrec, ladspaH, ladspaPlugins, libjack2
+, dssi, fftwSinglePrec, ladspaH, ladspaPlugins, libjack2, alsaLib
 , liblo, liblrdf, libsamplerate, libsndfile, lirc ? null, qtbase }:
 
 stdenv.mkDerivation (rec {
@@ -30,6 +30,7 @@ stdenv.mkDerivation (rec {
     libsndfile
     lirc
     qtbase
+    alsaLib
   ];
 
   enableParallelBuilding = true;