lol

skytemple-rust: add Foundation library on darwin

+12 -3
+9 -2
pkgs/development/python-modules/skytemple-rust/default.nix
··· 1 - { lib, stdenv, buildPythonPackage, fetchFromGitHub, libiconv, rustPlatform, setuptools-rust }: 1 + { lib 2 + , stdenv 3 + , buildPythonPackage 4 + , fetchFromGitHub 5 + , libiconv 6 + , Foundation 7 + , rustPlatform 8 + , setuptools-rust }: 2 9 3 10 buildPythonPackage rec { 4 11 pname = "skytemple-rust"; ··· 17 24 sha256 = "sha256-lXPCxRbaqUC5EfyeBPtJDuGADYOA+DWMaOZRwXppP8E="; 18 25 }; 19 26 20 - buildInputs = lib.optionals stdenv.isDarwin [ libiconv ]; 27 + buildInputs = lib.optionals stdenv.isDarwin [ libiconv Foundation ]; 21 28 nativeBuildInputs = [ setuptools-rust ] ++ (with rustPlatform; [ cargoSetupHook rust.cargo rust.rustc ]); 22 29 23 30 GETTEXT_SYSTEM = true;
+3 -1
pkgs/top-level/python-packages.nix
··· 9484 9484 9485 9485 skytemple-icons = callPackage ../development/python-modules/skytemple-icons { }; 9486 9486 9487 - skytemple-rust = callPackage ../development/python-modules/skytemple-rust { }; 9487 + skytemple-rust = callPackage ../development/python-modules/skytemple-rust { 9488 + inherit (pkgs.darwin.apple_sdk.frameworks) Foundation; 9489 + }; 9488 9490 9489 9491 skytemple-ssb-debugger = callPackage ../development/python-modules/skytemple-ssb-debugger { }; 9490 9492