about summary refs log tree commit diff
path: root/pkgs/games/MazesOfMonad/default.nix
blob: 92c7a17d7d960bcb58443efb8219000d543d5388 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ cabal, filepath, HUnit, mtl, random, regexPosix, time }:

cabal.mkDerivation (self: {
  pname = "MazesOfMonad";
  version = "1.0.7";
  sha256 = "1zk6bckll03b40iq8z13753glkmcan6439w8cc6rn5h2fhp189v9";
  isLibrary = false;
  isExecutable = true;
  buildDepends = [ filepath HUnit mtl random regexPosix time ];
  meta = {
    description = "Console-based Role Playing Game";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [
      self.stdenv.lib.maintainers.andres
      self.stdenv.lib.maintainers.simons
    ];
  };
})