about summary refs log tree commit diff
path: root/pkgs/games/itch/invisigun-heroes.nix
blob: 6bb9b41f3edae766995d9b56c486813bb1a7e2b1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ buildUnity, fetchItch }:

buildUnity rec {
  name = "invisigun-heroes";
  fullName = "Invisigun Heroes";
  version = "1.5.70";

  src = fetchItch {
    name = "${name}-${version}.zip";
    gameId = 25561;
    uploadId = 208583;
    version = "v${version}";
    sha256 = "149g3bsgyqal3m1h2rh5h0m3dc39ky5n81y8plx3xg9r2b1sfhsn";
  };
}