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