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

23 lines
669 B
Nix
Raw Normal View History

{ cabal, aeson, attoparsec, cereal, cryptoApi, httpConduit
, httpTypes, HUnit, network, pureMD5, testFramework
, testFrameworkHunit, text
}:
2012-09-05 20:38:07 +02:00
cabal.mkDerivation (self: {
pname = "liblastfm";
version = "0.1.1.1";
sha256 = "1svqxi85n18r9szmlcny51j71zzkki9pnfxnxim78y5vh0nf82qv";
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
];
testDepends = [
aeson attoparsec HUnit testFramework testFrameworkHunit 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;
maintainers = [ self.stdenv.lib.maintainers.simons ];
2012-09-05 20:38:07 +02:00
};
})