From 7ae97432b8eea19a21286e1f1a18b582f4040c2f Mon Sep 17 00:00:00 2001 From: Emery Hemingway Date: Fri, 17 Apr 2015 10:38:13 -0400 Subject: [PATCH] libmpdclient: 2.9 -> 2.10 --- pkgs/servers/mpd/clientlib.nix | 14 +++++++------- 1 file 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 ]; }; }