da350b93a2
- bson: updated to version 0.2.0 - cpu: updated to version 0.1.1 - defaults.nix: cosmetic - iteratee: updated to version 0.8.9.1 - ListLike: updated to version 3.1.5 - mongoDB: updated to version 1.3.0 - packages.nix: cosmetic - stringsearch: added version 0.3.6.3 - system-fileio: updated to version 0.3.8 - wai-extra: updated to version 1.2.0.5 svn path=/nixpkgs/trunk/; revision=34517
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.0";
|
|
sha256 = "1m4bzbl3i9p8v78zjb4ilrpdxbxpqz5bgcpklvvkb2ipfkgqhmhx";
|
|
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 ];
|
|
};
|
|
})
|