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