2013-01-04 18:17:22 +00:00
|
|
|
{ cabal, aeson, cereal, cryptoApi, httpConduit, httpTypes, network
|
|
|
|
, pureMD5, text
|
2012-11-26 14:16:18 +00:00
|
|
|
}:
|
2012-09-05 19:38:07 +01:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "liblastfm";
|
2013-03-13 10:58:45 +00:00
|
|
|
version = "0.1.1.0";
|
|
|
|
sha256 = "1yrgyb0m1gdhsrkv3b8a5a0qii67v9gx1kbv79ixlac60bsm4q95";
|
2012-09-05 19:38:07 +01:00
|
|
|
buildDepends = [
|
2013-01-04 18:17:22 +00:00
|
|
|
aeson cereal cryptoApi httpConduit httpTypes network pureMD5 text
|
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;
|
|
|
|
};
|
|
|
|
})
|