20 lines
706 B
Nix
20 lines
706 B
Nix
{ cabal, binary, bson, cryptohash, liftedBase, monadControl, mtl
|
|
, network, parsec, random, randomShuffle, text, transformersBase
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "mongoDB";
|
|
version = "1.4.1.1";
|
|
sha256 = "1c9980x3i0jgacgz7mx65l5nyp3h83mqp9b52pzxq90lix6xnwhi";
|
|
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 ];
|
|
};
|
|
})
|