sentencepiece: fix paths in pkg-config file

This commit is contained in:
Alexander Shpilkin 2022-05-18 21:50:31 +03:00 committed by Artturin
parent a6ef202baf
commit 18c0a8b1c5

View file

@ -24,6 +24,13 @@ stdenv.mkDerivation rec {
outputs = [ "bin" "dev" "out" ];
# https://github.com/google/sentencepiece/issues/754
postPatch = ''
substituteInPlace CMakeLists.txt \
--replace '\$'{exec_prefix}/'$'{CMAKE_INSTALL_LIBDIR} '$'{CMAKE_INSTALL_FULL_LIBDIR} \
--replace '\$'{prefix}/'$'{CMAKE_INSTALL_INCLUDEDIR} '$'{CMAKE_INSTALL_FULL_INCLUDEDIR}
'';
meta = with lib; {
homepage = "https://github.com/google/sentencepiece";
description = "Unsupervised text tokenizer for Neural Network-based text generation";