sentencepiece: 0.1.90 -> 0.1.91

Changelog:

https://github.com/google/sentencepiece/releases/tag/v0.1.91
This commit is contained in:
Daniël de Kok 2020-05-21 08:33:20 +02:00
parent 067ad3cc94
commit 946b97a890

View File

@ -9,13 +9,13 @@
stdenv.mkDerivation rec {
pname = "sentencepiece";
version = "0.1.90";
version = "0.1.91";
src = fetchFromGitHub {
owner = "google";
repo = pname;
rev = "v${version}";
sha256 = "10y16qkr2ibn8synmyzgwcbkszyfys1v0dx75p3mayh02yif4dx2";
sha256 = "1yg55h240iigjaii0k70mjb4sh3mgg54rp2sz8bx5glnsjwys5s3";
};
nativeBuildInputs = [ cmake ] ++ lib.optional withGPerfTools gperftools;