about summary refs log tree commit diff
path: root/pkgs/applications/misc
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-06-15 02:56:29 +0200
committerGitHub <noreply@github.com>2021-06-15 02:56:29 +0200
commitb49107c6d2fd32aee194469f120593c96a46f142 (patch)
tree988e31c4795999dab7a450c1b782970e2bd996dc /pkgs/applications/misc
parentf958de8361aebe1115f4a36bf74d49126cc3caab (diff)
parentc78150c69e762af1bf3d908469d70d8a714e50a6 (diff)
Merge pull request #126653 from xfix/skytemple-webkitgtk
skytemple: add webkitgtk to buildInputs
Diffstat (limited to 'pkgs/applications/misc')
-rw-r--r--pkgs/applications/misc/skytemple/default.nix12
1 files changed, 10 insertions, 2 deletions
diff --git a/pkgs/applications/misc/skytemple/default.nix b/pkgs/applications/misc/skytemple/default.nix
index a67d79f9bf901..0daaad2f2655e 100644
--- a/pkgs/applications/misc/skytemple/default.nix
+++ b/pkgs/applications/misc/skytemple/default.nix
@@ -1,4 +1,4 @@
-{ lib, fetchFromGitHub, gobject-introspection, gtk3, gtksourceview3, wrapGAppsHook, python3Packages }:
+{ lib, fetchFromGitHub, gobject-introspection, gtk3, gtksourceview3, webkitgtk, wrapGAppsHook, python3Packages }:
 
 python3Packages.buildPythonApplication rec {
   pname = "skytemple";
@@ -11,7 +11,15 @@ python3Packages.buildPythonApplication rec {
     sha256 = "0l2c4qngv58j6zkp0va6m96zksx8gqn3mjc3isqybfnhjr6nd3v9";
   };
 
-  buildInputs = [ gobject-introspection gtk3 gtksourceview3 ];
+  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