spacepaste

  1.  
  2. { mkDerivation, base, bytestring, heist, lens, map-syntax
  3. , monad-control, mtl, snap, snap-core, snap-loader-static
  4. , snap-server, stdenv, text, time, xmlhtml
  5. }:
  6. mkDerivation {
  7. pname = "snap-test";
  8. version = "0.1";
  9. src = ./.;
  10. isLibrary = false;
  11. isExecutable = true;
  12. executableHaskellDepends = [
  13. base bytestring heist lens map-syntax monad-control mtl snap
  14. snap-core snap-loader-static snap-server text time xmlhtml
  15. ];
  16. description = "Project Synopsis Here";
  17. license = stdenv.lib.licenses.unfree;
  18. hydraPlatforms = stdenv.lib.platforms.none;
  19. }
  20.