4490fe934e
- base64-bytestring: updated to version 0.1.2.0 - binary-shared: updated to version 0.8.2 - bson: updated to version 0.2.1 - leksah-server: updated to version 0.12.1.2 - leksah: updated to version 0.12.1.2 - MonadRandom: updated to version 0.1.7 - random-shuffle: updated to version 0.0.4 svn path=/nixpkgs/trunk/; revision=34569
20 lines
589 B
Nix
20 lines
589 B
Nix
{ cabal, binary, cryptohash, dataBinaryIeee754, mtl, network, text
|
|
, time
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "bson";
|
|
version = "0.2.1";
|
|
sha256 = "1g5xvkpn5j2yn9figxiv5dindwv6gg90np56k235hy9cwmdicmwq";
|
|
buildDepends = [
|
|
binary cryptohash dataBinaryIeee754 mtl network text time
|
|
];
|
|
meta = {
|
|
homepage = "http://github.com/selectel/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 ];
|
|
};
|
|
})
|