2012-02-16 06:05:41 -08:00
|
|
|
{ cabal, binary, bson, cryptohash, liftedBase, monadControl, mtl
|
2012-06-15 01:06:11 -07:00
|
|
|
, network, parsec, random, randomShuffle, text, transformersBase
|
2011-12-13 23:57:52 -08:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "mongoDB";
|
2013-09-03 04:57:26 -07:00
|
|
|
version = "1.4.1.1";
|
|
|
|
sha256 = "1c9980x3i0jgacgz7mx65l5nyp3h83mqp9b52pzxq90lix6xnwhi";
|
2011-12-13 23:57:52 -08:00
|
|
|
buildDepends = [
|
2012-02-16 06:05:41 -08:00
|
|
|
binary bson cryptohash liftedBase monadControl mtl network parsec
|
2012-06-15 01:06:11 -07:00
|
|
|
random randomShuffle text transformersBase
|
2011-12-13 23:57:52 -08:00
|
|
|
];
|
|
|
|
meta = {
|
2012-06-15 01:06:11 -07:00
|
|
|
homepage = "http://github.com/selectel/mongodb-haskell";
|
2011-12-13 23:57:52 -08:00
|
|
|
description = "Driver (client) for MongoDB, a free, scalable, fast, document DBMS";
|
|
|
|
license = "unknown";
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 15:36:36 -07:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-12-13 23:57:52 -08:00
|
|
|
};
|
|
|
|
})
|