1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-22 18:12:20 -04:00
nixpkgs/pkgs/development/libraries/haskell/liblastfm/default.nix

22 lines
611 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.2";
sha256 = "1zckgjc0r2s1s6s9s309dr2ri8bzj1fi8gcbhm3hifczq1v149w9";
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;
};
})