summary refs log tree commit diff
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2021-02-12 08:35:49 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2021-02-12 08:35:49 -0300
commitdef34bb17051f4cc39baca207012d719fab4b759 (patch)
treebd55fc7d528306f57ca6770e2ce54909008fedab
parentf14da185ef0a8d4ba9adbfec348c8220d0df2624 (diff)
downloadnixpkgs-def34bb17051f4cc39baca207012d719fab4b759.tar
nixpkgs-def34bb17051f4cc39baca207012d719fab4b759.tar.gz
nixpkgs-def34bb17051f4cc39baca207012d719fab4b759.tar.bz2
nixpkgs-def34bb17051f4cc39baca207012d719fab4b759.tar.lz
nixpkgs-def34bb17051f4cc39baca207012d719fab4b759.tar.xz
nixpkgs-def34bb17051f4cc39baca207012d719fab4b759.tar.zst
nixpkgs-def34bb17051f4cc39baca207012d719fab4b759.zip
mpdscribble: mpd_clientlib -> libmpdclient
-rw-r--r--pkgs/tools/misc/mpdscribble/default.nix30
1 files changed, 23 insertions, 7 deletions
diff --git a/pkgs/tools/misc/mpdscribble/default.nix b/pkgs/tools/misc/mpdscribble/default.nix
index 182e844eb84..fce376bb32e 100644
--- a/pkgs/tools/misc/mpdscribble/default.nix
+++ b/pkgs/tools/misc/mpdscribble/default.nix
@@ -1,22 +1,38 @@
-{ lib, stdenv, fetchurl, meson, ninja, pkg-config, boost, libgcrypt, systemd, mpd_clientlib, curl }:
+{ lib
+, stdenv
+, fetchurl
+, pkg-config
+, meson
+, ninja
+, boost
+, curl
+, libgcrypt
+, libmpdclient
+, systemd
+}:
 
 stdenv.mkDerivation rec {
   pname = "mpdscribble";
   version = "0.23";
 
   src = fetchurl {
-    url =
-    "https://www.musicpd.org/download/mpdscribble/${version}/mpdscribble-${version}.tar.xz";
+    url = "https://www.musicpd.org/download/mpdscribble/${version}/mpdscribble-${version}.tar.xz";
     sha256 = "0s66zqscb44p88cl3kcv5jkjcqsskcnrv7xgrjhzrchf2kcpwf53";
   };
 
-  nativeBuildInputs = [ meson ninja pkg-config ];
-  buildInputs = [ mpd_clientlib curl boost libgcrypt systemd ];
+  nativeBuildInputs = [ pkg-config meson ninja ];
+  buildInputs = [
+    libmpdclient
+    curl
+    boost
+    libgcrypt
+    systemd
+  ];
 
   meta = with lib; {
-    description = "A Music Player Daemon (MPD) client which submits information about tracks being played to a scrobbler (e.g. last.fm)";
+    description = "A MPD client which submits info about tracks being played to a scrobbler";
     homepage = "https://www.musicpd.org/clients/mpdscribble/";
-    license = licenses.gpl2;
+    license = licenses.gpl2Plus;
     maintainers = [ maintainers.sohalt ];
     platforms = platforms.linux;
   };