about summary refs log tree commit diff
path: root/pkgs/applications/audio/cantata
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@mailbox.org>2020-09-25 05:38:03 -0500
committerThomas Tuegel <ttuegel@mailbox.org>2020-09-26 05:50:24 -0500
commite1b7af630fb864311f8e21d517179780b3bb0ccb (patch)
tree69727456f936086ec15b0d6182ce7e9a569491cb /pkgs/applications/audio/cantata
parentd752cc4d7165acb9f3ae536baeb9d701d60d9c59 (diff)
cantata: use libvlc
Diffstat (limited to 'pkgs/applications/audio/cantata')
-rw-r--r--pkgs/applications/audio/cantata/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/audio/cantata/default.nix b/pkgs/applications/audio/cantata/default.nix
index 95b7dd18425b1..df19ac9422882 100644
--- a/pkgs/applications/audio/cantata/default.nix
+++ b/pkgs/applications/audio/cantata/default.nix
@@ -16,7 +16,7 @@
 , withDevices ? true, udisks2
 , withDynamic ? true
 , withHttpServer ? true
-, withLibVlc ? false, vlc
+, withLibVlc ? false, libvlc
 , withStreams ? true
 }:
 
@@ -71,7 +71,7 @@ in mkDerivation {
     ++ lib.optional  withMtp libmtp
     ++ lib.optional  withMusicbrainz libmusicbrainz5
     ++ lib.optional  withUdisks udisks2
-    ++ lib.optional  withLibVlc vlc;
+    ++ lib.optional  withLibVlc libvlc;
 
   nativeBuildInputs = [ cmake pkgconfig qttools ];