2013-02-24 21:09:07 +00:00
|
|
|
{ cabal, dataDefault, filepath, hspec, HUnit, mtl, network
|
|
|
|
, QuickCheck, text, time, utf8String
|
|
|
|
}:
|
2011-11-21 18:02:22 +00:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "libmpd";
|
2013-01-12 14:30:35 +00:00
|
|
|
version = "0.8.0.2";
|
|
|
|
sha256 = "1phlbb5lsapw2hb0db7906ddlmvnpyk1xbgxvl9zp9zfd0sn40aj";
|
2012-04-23 10:34:01 +01:00
|
|
|
buildDepends = [ filepath mtl network text time utf8String ];
|
2013-02-24 21:09:07 +00:00
|
|
|
testDepends = [
|
|
|
|
dataDefault hspec HUnit mtl network QuickCheck text time utf8String
|
|
|
|
];
|
2011-11-21 18:02:22 +00:00
|
|
|
meta = {
|
|
|
|
homepage = "http://github.com/joachifm/libmpd-haskell";
|
|
|
|
description = "An MPD client library";
|
|
|
|
license = "LGPL";
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 23:36:36 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-11-21 18:02:22 +00:00
|
|
|
};
|
|
|
|
})
|