1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-06 04:23:14 +00:00
nixpkgs/pkgs/development/libraries/haskell/hexpat/default.nix

15 lines
479 B
Nix
Raw Normal View History

{ cabal, deepseq, List, text, transformers, utf8String }:
2012-11-01 08:40:09 +00:00
cabal.mkDerivation (self: {
pname = "hexpat";
version = "0.20.6";
sha256 = "02ms6lchj6k0krqjk47bibfb0cbpbc16ip9f22c4rgp04qkzp60b";
buildDepends = [ deepseq List text transformers utf8String ];
2012-11-01 08:40:09 +00:00
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;
};
})