{ mkDerivation, aeson, base, bytestring, containers, CouchDB
, http-media, http-types, network-uri, servant, servant-server
, stdenv, text, unordered-containers, uuid, warp
}:
mkDerivation {
  pname = "dungeon-studio";
  version = "0.1.0.0";
  src = ./.;
  isLibrary = false;
  isExecutable = true;
  executableHaskellDepends = [
    aeson base bytestring containers CouchDB http-media http-types
    network-uri servant servant-server text unordered-containers uuid
    warp
  ];
  homepage = "https://github.com/alunduil/dungeon.studio";
  description = "Game Master's Companion";
  license = stdenv.lib.licenses.mit;
}