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