depot/pkgs/games/sm64ex/sm64ex.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

21 lines
460 B
Nix

{ callPackage
, fetchFromGitHub
}:
callPackage ./generic.nix {
pname = "sm64ex";
version = "unstable-2022-12-19";
src = fetchFromGitHub {
owner = "sm64pc";
repo = "sm64ex";
rev = "afc7e8da695bdf1aea5400a0d5c8b188d16a2088";
sha256 = "sha256-TbA9yGPtP2uGsxN3eFaQwFeNjAjZ5hSk8Qmx1pRQxf8=";
};
extraMeta = {
homepage = "https://github.com/sm64pc/sm64ex";
description = "Super Mario 64 port based off of decompilation";
};
}