madlang-2.4.0.0: default.nix
{ mkDerivation, ansi-wl-pprint, base, composition
, composition-extra, containers, directory, file-embed, hspec
, hspec-megaparsec, megaparsec, microlens, MonadRandom, mtl
, optparse-applicative, random-shuffle, stdenv, template-haskell
, text
}:
mkDerivation {
pname = "madlang";
version = "2.3.2.0";
src = ./.;
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
ansi-wl-pprint base composition composition-extra containers
directory file-embed megaparsec microlens MonadRandom mtl
optparse-applicative random-shuffle template-haskell text
];
executableHaskellDepends = [ base ];
testHaskellDepends = [
base hspec hspec-megaparsec megaparsec mtl text
];
homepage = "https://github.com/vmchale/madlang#readme";
description = "Randomized templating language DSL";
license = stdenv.lib.licenses.bsd3;
}