2013-08-17 10:50:38 +01:00
|
|
|
{ cabal, aeson, cereal, contravariant, cryptoApi, httpConduit
|
2014-01-01 23:21:13 +00:00
|
|
|
, httpTypes, network, pureMD5, semigroups, tagged, text, void
|
2012-11-26 14:16:18 +00:00
|
|
|
}:
|
2012-09-05 19:38:07 +01:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "liblastfm";
|
2014-01-01 23:21:13 +00:00
|
|
|
version = "0.3.2.0";
|
|
|
|
sha256 = "09xsjkwknfvdd3zb7a1qbch45ri6knkn33wl6xbi48sw5i79lxnv";
|
2012-09-05 19:38:07 +01:00
|
|
|
buildDepends = [
|
2013-05-30 10:01:48 +01:00
|
|
|
aeson cereal contravariant cryptoApi httpConduit httpTypes network
|
2014-01-01 23:21:13 +00:00
|
|
|
pureMD5 semigroups tagged text void
|
2013-03-27 23:29:09 +00:00
|
|
|
];
|
2012-09-05 19:38:07 +01:00
|
|
|
meta = {
|
2013-01-04 18:17:22 +00:00
|
|
|
description = "Lastfm API interface";
|
2012-09-05 19:38:07 +01:00
|
|
|
license = self.stdenv.lib.licenses.mit;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|