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
21 lines
704 B
Nix
21 lines
704 B
Nix
{ cabal, binary, bson, cryptohash, liftedBase, monadControl, mtl
|
|
, network, parsec, random, randomShuffle, text, transformersBase
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "mongoDB";
|
|
version = "1.3.0";
|
|
sha256 = "1l6r55bicjdybn8jn9rp94aamjqy5j5qs2775m05aba8svsl4kma";
|
|
buildDepends = [
|
|
binary bson cryptohash liftedBase monadControl mtl network parsec
|
|
random randomShuffle text transformersBase
|
|
];
|
|
meta = {
|
|
homepage = "http://github.com/selectel/mongodb-haskell";
|
|
description = "Driver (client) for MongoDB, a free, scalable, fast, document DBMS";
|
|
license = "unknown";
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|