nixpkgs/pkgs/development/libraries/haskell/haxr-th/default.nix
Peter Simons d5fbf640a3 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
2011-08-07 21:59:55 +00:00

16 lines
501 B
Nix

{cabal, haxr} :
cabal.mkDerivation (self : {
pname = "haxr-th";
version = "3000.5";
sha256 = "1h1g4r7c5k3rja49ip4m21f2sscn06xjxharnlyazvvs6mzfysif";
propagatedBuildInputs = [ haxr ];
meta = {
homepage = "http://www.haskell.org/haxr/";
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 ];
};
})