Fixed build of haskell-CouchDB. This change obsoletes the requirement

for json 0.3.6, which has subsequently been removed from the database.

svn path=/nixpkgs/trunk/; revision=28637
This commit is contained in:
Peter Simons
2011-08-16 23:32:16 +00:00
parent f167461d97
commit 1cff2d41aa
3 changed files with 2 additions and 24 deletions

View File

@@ -1,17 +0,0 @@
{ cabal, parsec }:
cabal.mkDerivation (self: {
pname = "json";
version = "0.3.6";
sha256 = "05047879ed0c7a9aa168a981e238da94758281af3cb1a1f78a6427322b946fd7";
buildDepends = [ parsec ];
meta = {
description = "Support for serialising Haskell to and from JSON";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [
self.stdenv.lib.maintainers.andres
self.stdenv.lib.maintainers.simons
];
};
})