{ mkDerivation, base, bytestring, heist, lens, map-syntax
, monad-control, mtl, snap, snap-core, snap-loader-static
, snap-server, stdenv, text, time, xmlhtml
}:
mkDerivation {
  pname = "snap-test";
  version = "0.1";
  src = ./.;
  isLibrary = false;
  isExecutable = true;
  executableHaskellDepends = [
    base bytestring heist lens map-syntax monad-control mtl snap
    snap-core snap-loader-static snap-server text time xmlhtml
  ];
  description = "Project Synopsis Here";
  license = stdenv.lib.licenses.unfree;
  hydraPlatforms = stdenv.lib.platforms.none;
}