about summary refs log tree commit diff
path: root/pkgs/servers/mpd
diff options
context:
space:
mode:
authorAnderson Torres <torres.anderson.85@protonmail.com>2023-12-22 11:30:31 -0300
committerAnderson Torres <torres.anderson.85@protonmail.com>2024-01-05 07:36:58 -0300
commit09efe009d0d1282558ffc536b3e9587101460211 (patch)
treede335b66e0d7322abc9dee21e63b4672a61099f0 /pkgs/servers/mpd
parentf8c2dafb53091ac2b89d56834f279c2d99f51d35 (diff)
libmpdclient: migrate to by-name
Diffstat (limited to 'pkgs/servers/mpd')
-rw-r--r--pkgs/servers/mpd/libmpdclient.nix30
1 files changed, 0 insertions, 30 deletions
diff --git a/pkgs/servers/mpd/libmpdclient.nix b/pkgs/servers/mpd/libmpdclient.nix
deleted file mode 100644
index 2b34f57bfdfbd..0000000000000
--- a/pkgs/servers/mpd/libmpdclient.nix
+++ /dev/null
@@ -1,30 +0,0 @@
-{ lib
-, stdenv
-, fetchFromGitHub
-, meson
-, ninja
-, fixDarwinDylibNames
-}:
-
-stdenv.mkDerivation rec {
-  pname = "libmpdclient";
-  version = "2.21";
-
-  src = fetchFromGitHub {
-    owner  = "MusicPlayerDaemon";
-    repo   = pname;
-    rev    = "v${version}";
-    sha256 = "sha256-U9K/4uivK5lx/7mG71umKGzP/KWgnexooF7weGu4B78=";
-  };
-
-  nativeBuildInputs = [ meson ninja ]
-  ++ lib.optional stdenv.isDarwin fixDarwinDylibNames;
-
-  meta = with lib; {
-    description = "Client library for MPD (music player daemon)";
-    homepage = "https://www.musicpd.org/libs/libmpdclient/";
-    license = licenses.bsd2;
-    maintainers = with maintainers; [ ehmry AndersonTorres ];
-    platforms = platforms.unix;
-  };
-}