mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
bcd7045998
Since the setting DCMAKE_SKIP_BUILD_RPATH was disabled, we can now run the checkPhase of cmake derivations without having to tweak the LD_LIBRARY_PATH anymore.
30 lines
957 B
Nix
30 lines
957 B
Nix
{ lib, stdenv, fetchFromGitHub, cmake, python3 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "opencc";
|
|
version = "1.1.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "BYVoid";
|
|
repo = "OpenCC";
|
|
rev = "ver.${version}";
|
|
sha256 = "sha256-q/y4tRov/BYCAiE4i7fT6ysTerxxOHMZUWT2Jlo/0rI=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake python3 ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/BYVoid/OpenCC";
|
|
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.
|
|
'';
|
|
maintainers = with maintainers; [ sifmelcara ];
|
|
platforms = with platforms; linux ++ darwin;
|
|
};
|
|
}
|