Merge pull request #130549 from xfix/skytemple-rust-iconv
python3Packages.skytemple-rust: fix for Darwin
This commit is contained in:
commit
9364572053
1 changed files with 2 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
{ lib, buildPythonPackage, fetchFromGitHub, rustPlatform, setuptools-rust }:
|
||||
{ lib, stdenv, buildPythonPackage, fetchFromGitHub, libiconv, rustPlatform, setuptools-rust }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "skytemple-rust";
|
||||
|
@ -17,6 +17,7 @@ buildPythonPackage rec {
|
|||
sha256 = "1ypcsf9gbq1bz29kfn7g4kg8741mxg1lfcbb14a0vfhjq4d6pnx9";
|
||||
};
|
||||
|
||||
buildInputs = lib.optionals stdenv.isDarwin [ libiconv ];
|
||||
nativeBuildInputs = [ setuptools-rust ] ++ (with rustPlatform; [ cargoSetupHook rust.cargo rust.rustc ]);
|
||||
|
||||
doCheck = false; # there are no tests
|
||||
|
|
Loading…
Reference in a new issue