mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
47 lines
1.2 KiB
Nix
47 lines
1.2 KiB
Nix
{ lib, fetchFromGitHub, gobject-introspection, gtk3, gtksourceview3, webkitgtk, wrapGAppsHook, python3Packages }:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "skytemple";
|
|
version = "1.3.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "SkyTemple";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "1sx2rib0la3mifvh84ia3jnnq4qw9jxc13vxyidsdkp6x82nbvcg";
|
|
};
|
|
|
|
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 ];
|
|
propagatedBuildInputs = with python3Packages; [
|
|
natsort
|
|
packaging
|
|
pycairo
|
|
pygal
|
|
pypresence
|
|
setuptools
|
|
skytemple-dtef
|
|
skytemple-eventserver
|
|
skytemple-files
|
|
skytemple-icons
|
|
skytemple-ssb-debugger
|
|
];
|
|
|
|
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;
|
|
maintainers = with maintainers; [ xfix marius851000 ];
|
|
};
|
|
}
|