2014-05-03 11:44:51 +02:00
|
|
|
{ cabal, attoparsec, dataDefault, filepath, hspec, HUnit, mtl
|
|
|
|
, network, QuickCheck, text, time, utf8String
|
2013-02-24 22:09:07 +01:00
|
|
|
}:
|
2011-11-21 19:02:22 +01:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "libmpd";
|
2014-06-03 11:35:40 +02:00
|
|
|
version = "0.8.0.4";
|
|
|
|
sha256 = "0dk723zly9dkwpgp4157d3a559g9j0ndxfdyp85yqcsr987wplqb";
|
2014-05-03 11:44:51 +02:00
|
|
|
buildDepends = [
|
|
|
|
attoparsec dataDefault filepath mtl network text time utf8String
|
|
|
|
];
|
2013-02-24 22:09:07 +01:00
|
|
|
testDepends = [
|
|
|
|
dataDefault hspec HUnit mtl network QuickCheck text time utf8String
|
|
|
|
];
|
2014-05-01 22:17:45 +02:00
|
|
|
jailbreak = true;
|
2014-06-11 11:12:57 +02:00
|
|
|
doCheck = false;
|
2011-11-21 19:02:22 +01:00
|
|
|
meta = {
|
2014-05-03 11:44:51 +02:00
|
|
|
homepage = "http://github.com/joachifm/libmpd-haskell#readme";
|
2011-11-21 19:02:22 +01:00
|
|
|
description = "An MPD client library";
|
|
|
|
license = "LGPL";
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-11 00:36:36 +02:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-11-21 19:02:22 +01:00
|
|
|
};
|
|
|
|
})
|