packages feed

madlang-2.1.1.1: default.nix

{ mkDerivation, ansi-wl-pprint, base, composition, containers
, directory, hspec, hspec-megaparsec, megaparsec, microlens, mtl
, mwc-random, optparse-applicative, random-shuffle, stdenv, text
}:
mkDerivation {
  pname = "madlang";
  version = "2.1.1.0";
  src = ./.;
  isLibrary = true;
  isExecutable = true;
  libraryHaskellDepends = [
    ansi-wl-pprint base composition containers directory megaparsec
    microlens mtl mwc-random optparse-applicative random-shuffle 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;
}