about summary refs log tree commit diff
path: root/pkgs/applications/audio/ashuffle
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2021-02-12 08:30:45 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2021-02-12 08:30:45 -0300
commitea01de98f67574b5f7cdb8f5f4a3a940df28eb84 (patch)
treeaa050788c2476482c9b44f3330084a55f9e5ff20 /pkgs/applications/audio/ashuffle
parent12a2c647bc545607156cd5c5d39bf4e4f51a33f8 (diff)
ashuffle: mpd_clientlib -> libmpdclient
Diffstat (limited to 'pkgs/applications/audio/ashuffle')
-rw-r--r--pkgs/applications/audio/ashuffle/default.nix12
1 files changed, 10 insertions, 2 deletions
diff --git a/pkgs/applications/audio/ashuffle/default.nix b/pkgs/applications/audio/ashuffle/default.nix
index f21cb9e3907fe..cf3321e241f06 100644
--- a/pkgs/applications/audio/ashuffle/default.nix
+++ b/pkgs/applications/audio/ashuffle/default.nix
@@ -1,4 +1,12 @@
-{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, mpd_clientlib, meson, ninja }:
+{ lib
+, stdenv
+, fetchFromGitHub
+, cmake
+, pkg-config
+, meson
+, ninja
+, libmpdclient
+}:
 
 stdenv.mkDerivation rec {
   pname = "ashuffle";
@@ -14,7 +22,7 @@ stdenv.mkDerivation rec {
 
   dontUseCmakeConfigure = true;
   nativeBuildInputs = [ cmake pkg-config meson ninja ];
-  buildInputs = [ mpd_clientlib ];
+  buildInputs = [ libmpdclient ];
 
   meta = with lib; {
     homepage = "https://github.com/joshkunz/ashuffle";