Updated Haskell packages.

- 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
This commit is contained in:
Peter Simons
2012-06-15 08:06:11 +00:00
parent 75cd74c72c
commit da350b93a2
10 changed files with 45 additions and 31 deletions

View File

@@ -1,17 +1,16 @@
{ cabal, binary, compactStringFix, cryptohash, dataBinaryIeee754
, mtl, network, time
{ cabal, binary, cryptohash, dataBinaryIeee754, mtl, network, text
, time
}:
cabal.mkDerivation (self: {
pname = "bson";
version = "0.1.7";
sha256 = "1dmndq0rx22h9kxv31rxwqhwkgsvqg9qy4l0xmvpcvvl101zj4jx";
version = "0.2.0";
sha256 = "1m4bzbl3i9p8v78zjb4ilrpdxbxpqz5bgcpklvvkb2ipfkgqhmhx";
buildDepends = [
binary compactStringFix cryptohash dataBinaryIeee754 mtl network
time
binary cryptohash dataBinaryIeee754 mtl network text time
];
meta = {
homepage = "http://github.com/TonyGen/bson-haskell";
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;