Merge pull request #1809 from ocharles/haskellPackages.fb
haskellPackages.fb: New expression
This commit is contained in:
commit
0f0e0da667
|
@ -0,0 +1,32 @@
|
||||||
|
{ cabal, aeson, attoparsec, attoparsecConduit, base16Bytestring
|
||||||
|
, base64Bytestring, cereal, conduit, cryptoApi, cryptohash
|
||||||
|
, cryptohashCryptoapi, dataDefault, hspec, httpConduit, httpTypes
|
||||||
|
, HUnit, liftedBase, monadControl, monadLogger, QuickCheck
|
||||||
|
, resourcet, text, time, transformers, transformersBase
|
||||||
|
, unorderedContainers
|
||||||
|
}:
|
||||||
|
|
||||||
|
cabal.mkDerivation (self: {
|
||||||
|
pname = "fb";
|
||||||
|
version = "0.15.2";
|
||||||
|
sha256 = "1nkgw4978kwhqs7h6rlsspx2f9dbmsywjn57v2fg1c1lg271rz1d";
|
||||||
|
buildDepends = [
|
||||||
|
aeson attoparsec attoparsecConduit base16Bytestring
|
||||||
|
base64Bytestring cereal conduit cryptoApi cryptohash
|
||||||
|
cryptohashCryptoapi dataDefault httpConduit httpTypes liftedBase
|
||||||
|
monadControl monadLogger resourcet text time transformers
|
||||||
|
transformersBase unorderedContainers
|
||||||
|
];
|
||||||
|
testDepends = [
|
||||||
|
aeson conduit dataDefault hspec httpConduit HUnit liftedBase
|
||||||
|
monadControl QuickCheck text time transformers
|
||||||
|
];
|
||||||
|
meta = {
|
||||||
|
homepage = "https://github.com/meteficha/fb";
|
||||||
|
description = "Bindings to Facebook's API";
|
||||||
|
license = self.stdenv.lib.licenses.bsd3;
|
||||||
|
platforms = self.ghc.meta.platforms;
|
||||||
|
};
|
||||||
|
# The tests require Facebook API keys
|
||||||
|
doCheck = false;
|
||||||
|
})
|
|
@ -1083,6 +1083,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
|
||||||
|
|
||||||
fastLogger = callPackage ../development/libraries/haskell/fast-logger {};
|
fastLogger = callPackage ../development/libraries/haskell/fast-logger {};
|
||||||
|
|
||||||
|
fb = callPackage ../development/libraries/haskell/fb {};
|
||||||
|
|
||||||
fclabels = callPackage ../development/libraries/haskell/fclabels {};
|
fclabels = callPackage ../development/libraries/haskell/fclabels {};
|
||||||
|
|
||||||
FerryCore = callPackage ../development/libraries/haskell/FerryCore {};
|
FerryCore = callPackage ../development/libraries/haskell/FerryCore {};
|
||||||
|
|
Loading…
Reference in New Issue