about summary refs log tree commit diff
path: root/pkgs/games/sm64ex/sm64ex.nix
blob: 66c84dd0b13c7a395c2d974fbed85bab0dae3dc4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ callPackage
, fetchFromGitHub
}:

callPackage ./generic.nix {
  pname = "sm64ex";
  version = "0.pre+date=2021-11-30";

  src = fetchFromGitHub {
    owner = "sm64pc";
    repo = "sm64ex";
    rev = "db9a6345baa5acb41f9d77c480510442cab26025";
    sha256 = "sha256-q7JWDvNeNrDpcKVtIGqB1k7I0FveYwrfqu7ZZK7T8F8=";
  };

  extraMeta = {
    homepage = "https://github.com/sm64pc/sm64ex";
    description = "Super Mario 64 port based off of decompilation";
  };
}