3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
16 lines
472 B
Nix
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 ];
|
|
};
|
|
})
|