2013-12-20 09:45:55 +00:00
|
|
|
{ cabal, binary, bson, cryptohash, hashtables, liftedBase
|
|
|
|
, monadControl, mtl, network, parsec, random, randomShuffle, text
|
|
|
|
, transformersBase
|
2011-12-14 07:57:52 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "mongoDB";
|
2014-06-23 21:37:51 +01:00
|
|
|
version = "2.0";
|
|
|
|
sha256 = "1dspx1x20903i44i825ziwmvaax75m8g08kz97cv34077bdir80h";
|
2011-12-14 07:57:52 +00:00
|
|
|
buildDepends = [
|
2013-12-20 09:45:55 +00:00
|
|
|
binary bson cryptohash hashtables liftedBase monadControl mtl
|
|
|
|
network parsec random randomShuffle text transformersBase
|
2011-12-14 07:57:52 +00:00
|
|
|
];
|
|
|
|
meta = {
|
2012-06-15 09:06:11 +01:00
|
|
|
homepage = "http://github.com/selectel/mongodb-haskell";
|
2011-12-14 07:57:52 +00:00
|
|
|
description = "Driver (client) for MongoDB, a free, scalable, fast, document DBMS";
|
|
|
|
license = "unknown";
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 23:36:36 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-12-14 07:57:52 +00:00
|
|
|
};
|
|
|
|
})
|