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

32 lines
1.1 KiB
Nix
Raw Normal View History

2014-04-04 22:23:09 +01:00
{ cabal, aeson, attoparsec, base16Bytestring, base64Bytestring
, cereal, conduit, conduitExtra, cryptoApi, cryptohash
2014-02-22 11:31:10 +00:00
, cryptohashCryptoapi, dataDefault, hspec, httpConduit, httpTypes
, HUnit, liftedBase, monadControl, monadLogger, QuickCheck
, resourcet, text, time, transformers, transformersBase
, unorderedContainers
}:
cabal.mkDerivation (self: {
pname = "fb";
2014-05-16 20:28:06 +01:00
version = "1.0.1";
sha256 = "0xhwv8fmhb1an15fnfjxzq0ijnhxxmfjwzd99dq1lsm0f7gd4hfi";
2014-02-22 11:31:10 +00:00
buildDepends = [
2014-04-04 22:23:09 +01:00
aeson attoparsec base16Bytestring base64Bytestring cereal conduit
conduitExtra cryptoApi cryptohash cryptohashCryptoapi dataDefault
httpConduit httpTypes liftedBase monadControl monadLogger resourcet
text time transformers transformersBase unorderedContainers
2014-02-22 11:31:10 +00:00
];
testDepends = [
aeson conduit dataDefault hspec httpConduit HUnit liftedBase
2014-04-04 22:23:09 +01:00
monadControl QuickCheck resourcet text time transformers
2014-02-22 11:31:10 +00:00
];
2014-06-20 14:04:02 +01:00
jailbreak = true;
doCheck = false;
2014-02-22 11:31:10 +00:00
meta = {
homepage = "https://github.com/meteficha/fb";
description = "Bindings to Facebook's API";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})