cabal2nix-2.8.2: test/golden-test-cases/lucid.nix.golden
{ mkDerivation, base, bifunctors, blaze-builder, bytestring
, containers, criterion, deepseq, fetchurl, hashable, hspec, HUnit
, mmorph, mtl, parsec, text, transformers, unordered-containers
}:
mkDerivation {
pname = "lucid";
version = "2.9.9";
src = fetchurl {
url = "http://example.org/";
sha256 = "abc";
};
libraryHaskellDepends = [
base blaze-builder bytestring containers hashable mmorph mtl text
transformers unordered-containers
];
testHaskellDepends = [
base bifunctors hspec HUnit mtl parsec text
];
benchmarkHaskellDepends = [
base blaze-builder bytestring criterion deepseq text transformers
];
homepage = "https://github.com/chrisdone/lucid";
description = "Clear to write, read and edit DSL for HTML";
license = stdenv.lib.licenses.bsd3;
}