about summary refs log tree commit diff
path: root/pkgs/games/gog/wizard-of-legend.nix
blob: 6db8cb2cc7e9406b7465fc92e58dc23bcbf42d16 (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.033";

  src = fetchGog {
    productId = 2061814323;
    downloadName = "en3installer0";
    sha256 = "1gbj0znfw87n2kq76vbchb3r2pyrl0wmdcjrvyr11b9igvqakv48";
  };

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