summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2022-06-24 10:25:03 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2022-06-24 10:25:03 +0200
commitc299e5c7da69f290cef6153122bcdd6e8e5704a3 (patch)
tree1428b59fc4f163d0c99f37a75b042fb1b0d127a7
parent6a56e73a29049eba4fc2f1ea2de940b418af8502 (diff)
downloadnixpkgs-c299e5c7da69f290cef6153122bcdd6e8e5704a3.tar
nixpkgs-c299e5c7da69f290cef6153122bcdd6e8e5704a3.tar.gz
nixpkgs-c299e5c7da69f290cef6153122bcdd6e8e5704a3.tar.bz2
nixpkgs-c299e5c7da69f290cef6153122bcdd6e8e5704a3.tar.lz
nixpkgs-c299e5c7da69f290cef6153122bcdd6e8e5704a3.tar.xz
nixpkgs-c299e5c7da69f290cef6153122bcdd6e8e5704a3.tar.zst
nixpkgs-c299e5c7da69f290cef6153122bcdd6e8e5704a3.zip
skytemple: add missing runtime dependencies
-rw-r--r--pkgs/applications/misc/skytemple/default.nix22
1 files changed, 19 insertions, 3 deletions
diff --git a/pkgs/applications/misc/skytemple/default.nix b/pkgs/applications/misc/skytemple/default.nix
index 0f331ef6e2c..2ec034e882e 100644
--- a/pkgs/applications/misc/skytemple/default.nix
+++ b/pkgs/applications/misc/skytemple/default.nix
@@ -1,4 +1,12 @@
-{ lib, fetchFromGitHub, gobject-introspection, gtk3, gtksourceview3, webkitgtk, wrapGAppsHook, python3Packages }:
+{ lib
+, fetchFromGitHub
+, gobject-introspection
+, gtk3
+, gtksourceview3
+, webkitgtk
+, wrapGAppsHook
+, python3Packages
+}:
 
 python3Packages.buildPythonApplication rec {
   pname = "skytemple";
@@ -8,7 +16,7 @@ python3Packages.buildPythonApplication rec {
     owner = "SkyTemple";
     repo = pname;
     rev = version;
-    sha256 = "sha256-CyYGTXdQsGpDR/gpqViEQO1xUPHaXTES592nRJixa1o=";
+    hash = "sha256-CyYGTXdQsGpDR/gpqViEQO1xUPHaXTES592nRJixa1o=";
   };
 
   buildInputs = [
@@ -20,9 +28,16 @@ python3Packages.buildPythonApplication rec {
     # any Pokemon, and clicking Stats and Moves tab.
     webkitgtk
   ];
-  nativeBuildInputs = [ gobject-introspection wrapGAppsHook ];
+
+  nativeBuildInputs = [
+    gobject-introspection
+    wrapGAppsHook
+  ];
+
   propagatedBuildInputs = with python3Packages; [
+    cairosvg
     natsort
+    ndspy
     packaging
     pycairo
     pygal
@@ -36,6 +51,7 @@ python3Packages.buildPythonApplication rec {
     skytemple-files
     skytemple-icons
     skytemple-ssb-debugger
+    tilequant
   ];
 
   doCheck = false; # there are no tests