932574a529
comonad-1.1.1.6 comonad-3.0.0.1 configurator-0.2.0.0 contravariant-0.2.0.2 data-lens-2.10.1 data-lens-template-2.1.5 distributive-0.2.2 heist-0.8.1.1 semigroupoids-1.3.4 snap-0.9.1.1 xmlhtml-0.2.0.0
18 lines
494 B
Nix
18 lines
494 B
Nix
{ cabal, blazeBuilder, blazeHtml, blazeMarkup, parsec, text
|
|
, unorderedContainers
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "xmlhtml";
|
|
version = "0.2.0.2";
|
|
sha256 = "0dqlqx3cnrqap3ficdkmwm8661j8i7qknb8xhjqvfmnb9pwqdks2";
|
|
buildDepends = [
|
|
blazeBuilder blazeHtml blazeMarkup parsec text unorderedContainers
|
|
];
|
|
meta = {
|
|
description = "XML parser and renderer with HTML 5 quirks mode";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
};
|
|
})
|