about summary refs log tree commit diff
path: root/pkgs/games/MazesOfMonad/default.nix
blob: fa38b49905bebbde86fbc16a274bfc3ac5de87f1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{cabal, HUnit, mtl, regexPosix, time}:

cabal.mkDerivation (self : {
  pname = "MazesOfMonad";
  version = "1.0.5";
  name = self.fname;
  sha256 = "a068df09975e7a3060cbd69191cbf99cb3a7b0ee524deb61eef4c52e7fada3f3";
  propagatedBuildInputs = [HUnit mtl regexPosix time];
  meta = {
    description = "Console-based Role Playing Game";
  };
})