Merge pull request #307115 from NickCao/opencc-cross

opencc: fix cross compilation
This commit is contained in:
Jörg Thalheim 2024-04-27 08:00:45 +02:00 committed by GitHub
commit 53e3474e5c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 16 additions and 2 deletions

View File

@ -1,4 +1,11 @@
{ lib, stdenv, fetchFromGitHub, cmake, python3 }:
{
lib,
stdenv,
fetchFromGitHub,
cmake,
python3,
opencc,
}:
stdenv.mkDerivation rec {
pname = "opencc";
@ -11,7 +18,14 @@ stdenv.mkDerivation rec {
sha256 = "sha256-N7nazA0xoQ2ewOGDiJg1vBBYMdF1/qiCfNjG5CFFbuk=";
};
nativeBuildInputs = [ cmake python3 ];
nativeBuildInputs =
[
cmake
python3
]
++ lib.optionals (!stdenv.buildPlatform.canExecute stdenv.hostPlatform) [
opencc # opencc_dict
];
meta = with lib; {
homepage = "https://github.com/BYVoid/OpenCC";