haskell-haxr-th: updated to version 3000.5

Unfortunately, even the latest version will not compile because it
expects an obsolete version of the base libraries.

svn path=/nixpkgs/trunk/; revision=28302
This commit is contained in:
Peter Simons 2011-08-07 21:59:55 +00:00
parent c1eb520fef
commit d5fbf640a3

View File

@ -1,11 +1,15 @@
{cabal, haxr, HaXml, HTTP}: {cabal, haxr} :
cabal.mkDerivation (self : { cabal.mkDerivation (self : {
pname = "haxr-th"; pname = "haxr-th";
version = "3000.0.0"; version = "3000.5";
sha256 = "00wqhri2fljjds6rwws0hgk7z27ii1lgvxr8db2li0780q5fa6ic"; sha256 = "1h1g4r7c5k3rja49ip4m21f2sscn06xjxharnlyazvvs6mzfysif";
propagatedBuildInputs = [ haxr ];
meta = { meta = {
homepage = "http://www.haskell.org/haxr/";
description = "Automatic deriving of XML-RPC structs for Haskell records."; description = "Automatic deriving of XML-RPC structs for Haskell records.";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.stdenv.lib.platforms.haskellPlatforms;
maintainers = [ self.stdenv.lib.maintainers.simons ];
}; };
propagatedBuildInputs = [HaXml HTTP haxr];
}) })