2014-05-03 10:44:51 +01:00
|
|
|
{ cabal, attoparsec, dataDefault, filepath, hspec, HUnit, mtl
|
|
|
|
, network, QuickCheck, text, time, utf8String
|
2013-02-24 21:09:07 +00:00
|
|
|
}:
|
2011-11-21 18:02:22 +00:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "libmpd";
|
2014-06-03 10:35:40 +01:00
|
|
|
version = "0.8.0.4";
|
|
|
|
sha256 = "0dk723zly9dkwpgp4157d3a559g9j0ndxfdyp85yqcsr987wplqb";
|
2014-05-03 10:44:51 +01:00
|
|
|
buildDepends = [
|
|
|
|
attoparsec dataDefault filepath mtl network text time utf8String
|
|
|
|
];
|
2013-02-24 21:09:07 +00:00
|
|
|
testDepends = [
|
|
|
|
dataDefault hspec HUnit mtl network QuickCheck text time utf8String
|
|
|
|
];
|
2014-05-01 21:17:45 +01:00
|
|
|
jailbreak = true;
|
2014-06-11 10:12:57 +01:00
|
|
|
doCheck = false;
|
2011-11-21 18:02:22 +00:00
|
|
|
meta = {
|
2014-05-03 10:44:51 +01:00
|
|
|
homepage = "http://github.com/joachifm/libmpd-haskell#readme";
|
2011-11-21 18:02:22 +00:00
|
|
|
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
|
|
|
};
|
|
|
|
})
|