about summary refs log tree commit diff
path: root/pkgs/applications/audio/ashuffle
diff options
context:
space:
mode:
authorOPNA2608 <christoph.neidahl@gmail.com>2023-01-29 15:44:19 +0100
committerOPNA2608 <christoph.neidahl@gmail.com>2023-01-31 16:22:54 +0100
commitc9b4c7dccdbf196fbe1113ef27da7da17f84b994 (patch)
tree4676c29c45945bdd0bb959c5c7f7deb483a066c7 /pkgs/applications/audio/ashuffle
parent4cb50969147bbadd48b0b6964727db98b2b31508 (diff)
treewide: Rename libyamlcpp* to yaml-cpp*
Diffstat (limited to 'pkgs/applications/audio/ashuffle')
-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 bd5a644857409..fa75711acea24 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" ];