sentencepiece: fix paths in pkg-config file

main
Alexander Shpilkin 2 years ago committed by Artturin
parent a6ef202baf
commit 18c0a8b1c5
  1. 7
      pkgs/development/libraries/sentencepiece/default.nix

@ -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";

Loading…
Cancel
Save