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

buildUnity {
  name = "wizard-of-legend";
  fullName = "WizardOfLegend";
  saveDir = "Contingent99/Wizard of Legend";
  version = "1.033b";

  src = fetchGog {
    productId = 2061814323;
    downloadName = "en3installer0";
    sha256 = "192fhway7ij5f4fh0vb1204f3yg3fxz08fvqlg03gskjs9krcbcz";
  };

  unpackCmd = "${unzip}/bin/unzip -qq \"$curSrc\" 'data/noarch/game/*' || :";
}