2013-02-24 21:09:07 +00:00
|
|
|
{ cabal, binary, cryptohash, dataBinaryIeee754, mtl, network
|
|
|
|
, QuickCheck, testFramework, testFrameworkQuickcheck2, text, time
|
2011-12-14 07:57:52 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "bson";
|
2013-03-20 09:44:55 +00:00
|
|
|
version = "0.2.2";
|
|
|
|
sha256 = "043lbaj4rrvh4a1yc033np51vi8xlbczflbhyx2bsiryzbi27waf";
|
2011-12-14 07:57:52 +00:00
|
|
|
buildDepends = [
|
2012-06-15 09:06:11 +01:00
|
|
|
binary cryptohash dataBinaryIeee754 mtl network text time
|
2011-12-14 07:57:52 +00:00
|
|
|
];
|
2013-02-24 21:09:07 +00:00
|
|
|
testDepends = [
|
|
|
|
binary cryptohash dataBinaryIeee754 mtl network QuickCheck
|
|
|
|
testFramework testFrameworkQuickcheck2 text time
|
|
|
|
];
|
2013-03-21 20:26:03 +00:00
|
|
|
doCheck = false;
|
2011-12-14 07:57:52 +00:00
|
|
|
meta = {
|
2012-06-15 09:06:11 +01:00
|
|
|
homepage = "http://github.com/selectel/bson-haskell";
|
2011-12-14 07:57:52 +00:00
|
|
|
description = "BSON documents are JSON-like objects with a standard binary encoding";
|
|
|
|
license = "unknown";
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 23:36:36 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-12-14 07:57:52 +00:00
|
|
|
};
|
|
|
|
})
|