nixpkgs/pkgs/applications/misc/skytemple/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

66 lines
1.3 KiB
Nix
Raw Normal View History

{ lib
, fetchFromGitHub
, gobject-introspection
, gtk3
, gtksourceview3
, webkitgtk
, wrapGAppsHook
, python3Packages
}:
2021-05-30 20:05:43 +00:00
python3Packages.buildPythonApplication rec {
pname = "skytemple";
2022-03-05 21:23:35 +00:00
version = "1.3.10";
2021-05-30 20:05:43 +00:00
src = fetchFromGitHub {
owner = "SkyTemple";
repo = pname;
rev = version;
hash = "sha256-CyYGTXdQsGpDR/gpqViEQO1xUPHaXTES592nRJixa1o=";
2021-05-30 20:05:43 +00:00
};
buildInputs = [
gobject-introspection
gtk3
gtksourceview3
# webkitgkt is used for rendering interactive statistics graph which
# can be seen by opening a ROM, entering Pokemon section, selecting
# any Pokemon, and clicking Stats and Moves tab.
webkitgtk
];
nativeBuildInputs = [
gobject-introspection
wrapGAppsHook
];
2021-05-30 20:05:43 +00:00
propagatedBuildInputs = with python3Packages; [
cairosvg
2021-05-30 20:05:43 +00:00
natsort
ndspy
2021-05-30 20:05:43 +00:00
packaging
pycairo
pygal
2022-03-05 21:23:35 +00:00
psutil
gbulb
2021-05-30 20:05:43 +00:00
pypresence
2022-03-05 21:23:35 +00:00
sentry-sdk
2021-05-30 20:05:43 +00:00
setuptools
skytemple-dtef
skytemple-eventserver
skytemple-files
skytemple-icons
skytemple-ssb-debugger
tilequant
2021-05-30 20:05:43 +00:00
];
doCheck = false; # there are no tests
meta = with lib; {
homepage = "https://github.com/SkyTemple/skytemple";
description = "ROM hacking tool for Pokémon Mystery Dungeon Explorers of Sky";
license = licenses.gpl3Plus;
2021-09-22 14:22:47 +00:00
maintainers = with maintainers; [ xfix marius851000 ];
2021-05-30 20:05:43 +00:00
};
}