nixpkgs/pkgs/development/libraries/haskell/hexpat/default.nix

19 lines
529 B
Nix
Raw Normal View History

2012-11-01 12:40:09 +04:00
{ cabal, deepseq, extensibleExceptions, List, text, transformers
, utf8String
}:
cabal.mkDerivation (self: {
pname = "hexpat";
version = "0.20.3";
sha256 = "13dh0cvcmp6yi4nncsn6q9pkisld9xvz6j4xabng5ax67vdgdvrs";
2012-11-01 12:40:09 +04:00
buildDepends = [
deepseq extensibleExceptions List text transformers utf8String
];
meta = {
homepage = "http://haskell.org/haskellwiki/Hexpat/";
description = "XML parser/formatter based on expat";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})