cabal2nix-2.8.2: test/golden-test-cases/ede.nix.golden
{ mkDerivation, aeson, ansi-wl-pprint, base, bifunctors, bytestring
, comonad, directory, double-conversion, fetchurl, filepath, free
, lens, mtl, parsers, scientific, semigroups, tasty, tasty-golden
, text, text-format, text-manipulate, trifecta
, unordered-containers, vector
}:
mkDerivation {
pname = "ede";
version = "0.2.8.7";
src = fetchurl {
url = "http://example.org/";
sha256 = "abc";
};
enableSeparateDataOutput = true;
libraryHaskellDepends = [
aeson ansi-wl-pprint base bifunctors bytestring comonad directory
double-conversion filepath free lens mtl parsers scientific
semigroups text text-format text-manipulate trifecta
unordered-containers vector
];
testHaskellDepends = [
aeson base bifunctors bytestring directory tasty tasty-golden text
];
homepage = "http://github.com/brendanhay/ede";
description = "Templating language with similar syntax and features to Liquid or Jinja2";
license = "unknown";
}