summary refs log tree commit diff
path: root/pkgs/applications/audio/ashuffle/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/audio/ashuffle/default.nix')
-rw-r--r--pkgs/applications/audio/ashuffle/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/audio/ashuffle/default.nix b/pkgs/applications/audio/ashuffle/default.nix
index bd5a6448574..fa75711acea 100644
--- a/pkgs/applications/audio/ashuffle/default.nix
+++ b/pkgs/applications/audio/ashuffle/default.nix
@@ -6,7 +6,7 @@
 , meson
 , ninja
 , libmpdclient
-, libyamlcpp
+, yaml-cpp
 }:
 
 stdenv.mkDerivation rec {
@@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
 
   dontUseCmakeConfigure = true;
   nativeBuildInputs = [ cmake pkg-config meson ninja ];
-  buildInputs = [ libmpdclient libyamlcpp ];
+  buildInputs = [ libmpdclient yaml-cpp ];
 
   mesonFlags = [ "-Dunsupported_use_system_yamlcpp=true" ];