cabal2nix-2.9.3: test/golden-test-cases/blaze-html.nix.golden
{ mkDerivation, base, blaze-builder, blaze-markup, bytestring
, containers, HUnit, QuickCheck, stdenv, test-framework
, test-framework-hunit, test-framework-quickcheck2, text
}:
mkDerivation {
pname = "blaze-html";
version = "0.9.0.1";
sha256 = "deadbeef";
libraryHaskellDepends = [
base blaze-builder blaze-markup bytestring text
];
testHaskellDepends = [
base blaze-builder blaze-markup bytestring containers HUnit
QuickCheck test-framework test-framework-hunit
test-framework-quickcheck2 text
];
homepage = "http://jaspervdj.be/blaze";
description = "A blazingly fast HTML combinator library for Haskell";
license = stdenv.lib.licenses.bsd3;
}