{ mkDerivation, base, blaze-builder, blaze-markup, bytestring , containers, fetchurl, HUnit, QuickCheck, test-framework , test-framework-hunit, test-framework-quickcheck2, text }: mkDerivation { pname = "blaze-html"; version = "0.9.0.1"; src = fetchurl { url = "http://example.org/"; sha256 = "abc"; }; 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; }