nixpkgs/pkgs/development/libraries/haskell/haxr-th/default.nix
Peter Simons 3b2254a3af Remove myself from the meta.maintainer field of most Haskell packages.
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
2013-05-11 00:36:59 +02:00

16 lines
472 B
Nix

{ cabal, haxr }:
cabal.mkDerivation (self: {
pname = "haxr-th";
version = "3000.5";
sha256 = "1h1g4r7c5k3rja49ip4m21f2sscn06xjxharnlyazvvs6mzfysif";
buildDepends = [ 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.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})