nixpkgs/pkgs/development/libraries/haskell/encoding/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

17 lines
505 B
Nix

{ cabal, binary, extensibleExceptions, HaXml, mtl, regexCompat }:
cabal.mkDerivation (self: {
pname = "encoding";
version = "0.6.7.2";
sha256 = "0b1z5824vdkcc51bd1vgcbaniw3fv9dmd5qczjc89b5lhrl7qq0d";
buildDepends = [
binary extensibleExceptions HaXml mtl regexCompat
];
meta = {
homepage = "http://code.haskell.org/encoding/";
description = "A library for various character encodings";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})