about summary refs log tree commit diff
path: root/pkgs/games/gog/dungeons3.nix
blob: 53892f712e64dce0606e4c6d927c93ae8f288070 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ buildUnity, fetchGog, mono }:

buildUnity {
  name = "dungeons3";
  fullName = "Dungeons3";
  saveDir = "Realmforge Studios GmbH/Dungeons 3";
  version = "1.4.4";

  src = fetchGog {
    productId = 1346232158;
    downloadName = "en3installer0";
    sha256 = "1m4dvb91nfwxbgb76n8saznaaif053vb5wkdllb7imdbqqwlfsmy";
  };

  buildInputs = [ mono ];
}