2012-06-15 10:06:11 +02:00
|
|
|
{ cabal, binary, cryptohash, dataBinaryIeee754, mtl, network, text
|
|
|
|
, time
|
2011-12-14 08:57:52 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "bson";
|
2012-06-20 12:56:24 +02:00
|
|
|
version = "0.2.1";
|
|
|
|
sha256 = "1g5xvkpn5j2yn9figxiv5dindwv6gg90np56k235hy9cwmdicmwq";
|
2011-12-14 08:57:52 +01:00
|
|
|
buildDepends = [
|
2012-06-15 10:06:11 +02:00
|
|
|
binary cryptohash dataBinaryIeee754 mtl network text time
|
2011-12-14 08:57:52 +01:00
|
|
|
];
|
|
|
|
meta = {
|
2012-06-15 10:06:11 +02:00
|
|
|
homepage = "http://github.com/selectel/bson-haskell";
|
2011-12-14 08:57:52 +01:00
|
|
|
description = "BSON documents are JSON-like objects with a standard binary encoding";
|
|
|
|
license = "unknown";
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-12-14 08:57:52 +01:00
|
|
|
};
|
|
|
|
})
|