nixpkgs/pkgs/development/libraries/haskell/liblastfm/default.nix

18 lines
468 B
Nix
Raw Normal View History

{ cabal, aeson, cereal, cryptoApi, httpConduit, httpTypes, network
, pureMD5, text
}:
2012-09-05 20:38:07 +02:00
cabal.mkDerivation (self: {
pname = "liblastfm";
version = "0.1.0.0";
sha256 = "1777p2zysha9z389dkzvc22wph5k2xa6f23xk1ckr8j1q5v9dg6x";
2012-09-05 20:38:07 +02:00
buildDepends = [
aeson cereal cryptoApi httpConduit httpTypes network pureMD5 text
2012-09-05 20:38:07 +02:00
];
meta = {
description = "Lastfm API interface";
2012-09-05 20:38:07 +02:00
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
};
})