nixpkgs/pkgs/tools/text/opencc/default.nix

40 lines
1.5 KiB
Nix
Raw Normal View History

2020-02-08 22:12:17 +00:00
{ stdenv, fetchFromGitHub, cmake, python }:
2016-11-08 18:29:43 +00:00
2020-02-08 22:12:17 +00:00
stdenv.mkDerivation rec {
pname = "opencc";
2020-04-12 18:47:14 +00:00
version = "1.0.6";
2020-02-08 22:12:17 +00:00
src = fetchFromGitHub {
owner = "BYVoid";
repo = "OpenCC";
rev = "ver.${version}";
2020-04-12 18:47:14 +00:00
sha256 = "1ygj2ygxsva72hs6cm0a6wdd2rp71k4nm0pd7cb20y2srdlzvdqk";
2016-11-08 18:29:43 +00:00
};
2020-02-08 22:12:17 +00:00
nativeBuildInputs = [ cmake python ];
2016-11-08 18:29:43 +00:00
2020-02-08 22:12:17 +00:00
# let intermediate tools find intermediate library
preBuild = stdenv.lib.optionalString stdenv.isLinux ''
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH''${LD_LIBRARY_PATH:+:}$(pwd)/src
2020-02-08 22:12:17 +00:00
'' + stdenv.lib.optionalString stdenv.isDarwin ''
export DYLD_LIBRARY_PATH=$DYLD_LIBRARY_PATH''${DYLD_LIBRARY_PATH:+:}$(pwd)/src
'';
2016-11-08 18:29:43 +00:00
# Parallel building occasionaly fails with: Error copying file "/tmp/nix-build-opencc-1.0.5.drv-0/OpenCC-ver.1.0.5/build/src/libopencc.so.1.0.0" to "/tmp/nix-build-opencc-1.0.5.drv-0/OpenCC-ver.1.0.5/build/src/tools".
enableParallelBuilding = false;
2016-11-08 18:29:43 +00:00
meta = with stdenv.lib; {
2020-02-08 22:12:17 +00:00
homepage = "https://github.com/BYVoid/OpenCC";
2016-11-08 18:29:43 +00:00
license = licenses.asl20;
description = "A project for conversion between Traditional and Simplified Chinese";
longDescription = ''
Open Chinese Convert (OpenCC) is an opensource project for conversion between
Traditional Chinese and Simplified Chinese, supporting character-level conversion,
phrase-level conversion, variant conversion and regional idioms among Mainland China,
Taiwan and Hong kong.
'';
2020-02-08 22:12:17 +00:00
maintainers = with maintainers; [ sifmelcara ];
platforms = with platforms; linux ++ darwin;
2016-11-08 18:29:43 +00:00
};
}