nixpkgs/pkgs/development/libraries/haskell/CouchDB/default.nix
Peter Simons 307c82ca3d haskell-CouchDB: updated to version 0.10.1
Unfortunately, even the latest version doesn't compile because it
expects an obsolete version of the base libraries.

svn path=/nixpkgs/trunk/; revision=28297
2011-08-07 21:59:29 +00:00

16 lines
513 B
Nix

{cabal, HTTP, json, mtl, network} :
cabal.mkDerivation (self : {
pname = "CouchDB";
version = "0.10.1";
sha256 = "1ny62ab0sjrkh7mpxj0ahqrv7c8dh0n5s1g8xl0mq3yiwlrjdsim";
propagatedBuildInputs = [ HTTP json mtl network ];
meta = {
homepage = "http://github.com/arjunguha/haskell-couchdb/";
description = "CouchDB interface";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.stdenv.lib.platforms.haskellPlatforms;
maintainers = [ self.stdenv.lib.maintainers.simons ];
};
})