mpd: update to version 19.8

This commit is contained in:
Mateusz Kowalczyk 2015-01-23 19:39:54 +00:00
parent 5881401348
commit 37f1938f5c
1 changed files with 2 additions and 2 deletions

View File

@ -27,13 +27,13 @@ let
opt = stdenv.lib.optional;
mkFlag = c: f: if c then "--enable-${f}" else "--disable-${f}";
major = "0.19";
minor = "6";
minor = "8";
in stdenv.mkDerivation rec {
name = "mpd-${major}.${minor}";
src = fetchurl {
url = "http://www.musicpd.org/download/mpd/${major}/${name}.tar.gz";
sha256 = "023h2d9x4yg1z2glnwf8h2j0p1xhn1hb0wf02mg70j3p0bz63imj";
sha256 = "1qifgc20cawhjxj7skn5xg23526i15hmav56wmd7cfxv50kq4j91";
};
buildInputs = [ pkgconfig glib boost ]