2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, binary, compactStringFix, cryptohash, dataBinaryIeee754
|
|
|
|
, mtl, network, time
|
2011-12-14 08:57:52 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "bson";
|
2012-01-24 16:06:08 +01:00
|
|
|
version = "0.1.7";
|
|
|
|
sha256 = "1dmndq0rx22h9kxv31rxwqhwkgsvqg9qy4l0xmvpcvvl101zj4jx";
|
2011-12-14 08:57:52 +01:00
|
|
|
buildDepends = [
|
2012-02-16 15:05:41 +01:00
|
|
|
binary compactStringFix cryptohash dataBinaryIeee754 mtl network
|
|
|
|
time
|
2011-12-14 08:57:52 +01:00
|
|
|
];
|
|
|
|
meta = {
|
|
|
|
homepage = "http://github.com/TonyGen/bson-haskell";
|
|
|
|
description = "BSON documents are JSON-like objects with a standard binary encoding";
|
|
|
|
license = "unknown";
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
|
|
|
};
|
|
|
|
})
|