1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-22 20:10:32 -04:00
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 14:38:07 -04:00
cabal.mkDerivation (self: {
pname = "liblastfm";
version = "0.1.1.1";
sha256 = "1svqxi85n18r9szmlcny51j71zzkki9pnfxnxim78y5vh0nf82qv";
2012-09-05 14:38:07 -04:00
buildDepends = [
aeson cereal cryptoApi httpConduit httpTypes network pureMD5 text
2012-09-05 14:38:07 -04:00
];
testDepends = [
aeson attoparsec HUnit testFramework testFrameworkHunit text
];
2012-09-05 14:38:07 -04:00
meta = {
description = "Lastfm API interface";
2012-09-05 14:38:07 -04:00
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.simons ];
2012-09-05 14:38:07 -04:00
};
})