2013-02-24 13:09:07 -08:00
|
|
|
{ cabal, HTTP, HUnit, json, mtl, network, utf8String }:
|
2009-11-06 04:38:54 -08:00
|
|
|
|
2011-08-09 16:00:20 -07:00
|
|
|
cabal.mkDerivation (self: {
|
2009-11-06 04:38:54 -08:00
|
|
|
pname = "CouchDB";
|
2012-08-27 02:30:48 -07:00
|
|
|
version = "1.2";
|
|
|
|
sha256 = "0a9g0iblfyqppcy1ni3ac8f3yv5km95bfblhwqlsk6khydi5ka98";
|
|
|
|
buildDepends = [ HTTP json mtl network utf8String ];
|
2013-02-24 13:09:07 -08:00
|
|
|
testDepends = [ HTTP HUnit json mtl network utf8String ];
|
2014-01-29 14:39:58 -08:00
|
|
|
doCheck = false;
|
2009-11-06 04:38:54 -08:00
|
|
|
meta = {
|
2011-08-07 14:59:29 -07:00
|
|
|
homepage = "http://github.com/arjunguha/haskell-couchdb/";
|
|
|
|
description = "CouchDB interface";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 02:54:50 -07:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 15:36:36 -07:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2009-11-06 04:38:54 -08:00
|
|
|
};
|
2011-03-28 08:04:00 -07:00
|
|
|
})
|