summary refs log tree commit diff
path: root/pkgs/servers
diff options
context:
space:
mode:
authorEmery Hemingway <emery@vfemail.net>2015-04-17 10:38:13 -0400
committerEmery Hemingway <emery@vfemail.net>2015-04-17 12:56:51 -0400
commit7ae97432b8eea19a21286e1f1a18b582f4040c2f (patch)
tree3a67dcab6f881eb478e64977563f836ea78aed4a /pkgs/servers
parentd8cd5d34aeae52487f304844b2f46cdb87c942c1 (diff)
downloadnixpkgs-7ae97432b8eea19a21286e1f1a18b582f4040c2f.tar
nixpkgs-7ae97432b8eea19a21286e1f1a18b582f4040c2f.tar.gz
nixpkgs-7ae97432b8eea19a21286e1f1a18b582f4040c2f.tar.bz2
nixpkgs-7ae97432b8eea19a21286e1f1a18b582f4040c2f.tar.lz
nixpkgs-7ae97432b8eea19a21286e1f1a18b582f4040c2f.tar.xz
nixpkgs-7ae97432b8eea19a21286e1f1a18b582f4040c2f.tar.zst
nixpkgs-7ae97432b8eea19a21286e1f1a18b582f4040c2f.zip
libmpdclient: 2.9 -> 2.10
Diffstat (limited to 'pkgs/servers')
-rw-r--r--pkgs/servers/mpd/clientlib.nix14
1 files changed, 7 insertions, 7 deletions
diff --git a/pkgs/servers/mpd/clientlib.nix b/pkgs/servers/mpd/clientlib.nix
index bbbe54b95fd..41e3b547f70 100644
--- a/pkgs/servers/mpd/clientlib.nix
+++ b/pkgs/servers/mpd/clientlib.nix
@@ -6,21 +6,21 @@ stdenv.mkDerivation rec {
 
   src = fetchurl {
     url = "http://www.musicpd.org/download/libmpdclient/2/${name}.tar.xz";
-    sha256 = "1jlrfqxqq3gscwrppr2h0xqxd5abl1ypwpwpwnpxs6p9c2jppjbw";
+    sha256 = "10pzs9z815a8hgbbbiliapyiw82bnplsccj5irgqjw5f5plcs22g";
   };
 
   buildInputs = [ doxygen ];
 
   passthru = {
     majorVersion = "2";
-    minorVersion = "9";
+    minorVersion = "10";
   };
 
-  meta = {
+  meta = with stdenv.lib; {
     description = "Client library for MPD (music player daemon)";
-    homepage = http://mpd.wikia.com/wiki/Music_Player_Daemon_Wiki;
-    license = stdenv.lib.licenses.gpl2;
-    platforms = with stdenv.lib.platforms; unix;
-    maintainers = [ stdenv.lib.maintainers.mornfall ];
+    homepage = http://www.musicpd.org/libs/libmpdclient/;
+    license = licenses.gpl2;
+    platforms = platforms.unix;
+    maintainers = with maintainers; [ mornfall emery ];
   };
 }