nixpkgs/pkgs/development/libraries/haskell/hxt-unicode/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
517 B
Nix

{ cabal, hxtCharproperties }:
cabal.mkDerivation (self: {
pname = "hxt-unicode";
version = "9.0.2";
sha256 = "1ri3198j0bavgam861yiiisl43rh4pbkmji7g6v3jnnch7834hdd";
buildDepends = [ hxtCharproperties ];
meta = {
homepage = "http://www.fh-wedel.de/~si/HXmlToolbox/index.html";
description = "Unicode en-/decoding functions for utf8, iso-latin-* and other encodings";
license = "unknown";
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})