1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-22 17:18:08 -04:00
nixpkgs/pkgs/development/libraries/haskell/hxt-charproperties/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

15 lines
445 B
Nix

{ cabal }:
cabal.mkDerivation (self: {
pname = "hxt-charproperties";
version = "9.1.1";
sha256 = "14xv0q1hh0k8lgispc4fa49cvyg9s7936kp42vr9b0pyd1q4zid8";
meta = {
homepage = "http://www.fh-wedel.de/~si/HXmlToolbox/index.html";
description = "Character properties and classes for XML and Unicode";
license = "unknown";
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})