nixpkgs/pkgs/development/libraries/haskell/json/default.nix
Peter Simons 1cff2d41aa 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
2011-08-16 23:32:16 +00:00

18 lines
485 B
Nix

{ cabal, mtl, parsec, syb }:
cabal.mkDerivation (self: {
pname = "json";
version = "0.4.4";
sha256 = "102qmz55b2mgcca3q1c2pkcr6hz7kmpldad3f6blhmp1cz15f081";
buildDepends = [ mtl parsec syb ];
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
];
};
})