3
0
Fork 0
forked from mirrors/nixpkgs

haskell-libmpd: update to version 0.8.0.3

This commit is contained in:
Peter Simons 2014-05-03 11:44:51 +02:00
parent 9953352f3e
commit f899787872

View file

@ -1,18 +1,20 @@
{ cabal, dataDefault, filepath, hspec, HUnit, mtl, network
, QuickCheck, text, time, utf8String
{ cabal, attoparsec, dataDefault, filepath, hspec, HUnit, mtl
, network, QuickCheck, text, time, utf8String
}:
cabal.mkDerivation (self: {
pname = "libmpd";
version = "0.8.0.2";
sha256 = "1phlbb5lsapw2hb0db7906ddlmvnpyk1xbgxvl9zp9zfd0sn40aj";
buildDepends = [ filepath mtl network text time utf8String ];
version = "0.8.0.3";
sha256 = "0xbbk2rg6awfz5ak20956nriifga81ndk7n58lbbf5i86380akwz";
buildDepends = [
attoparsec dataDefault filepath mtl network text time utf8String
];
testDepends = [
dataDefault hspec HUnit mtl network QuickCheck text time utf8String
];
jailbreak = true;
meta = {
homepage = "http://github.com/joachifm/libmpd-haskell";
homepage = "http://github.com/joachifm/libmpd-haskell#readme";
description = "An MPD client library";
license = "LGPL";
platforms = self.ghc.meta.platforms;