Merge pull request #108756 from danieldk/sentencepiece-0.1.95

This commit is contained in:
Sandro 2021-01-10 02:33:38 +01:00 committed by GitHub
commit 5b977aae1f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,16 +9,18 @@
stdenv.mkDerivation rec {
pname = "sentencepiece";
version = "0.1.94";
version = "0.1.95";
src = fetchFromGitHub {
owner = "google";
repo = pname;
rev = "v${version}";
sha256 = "sha256:11cqw4hx33gw2jmrg11jyp7fj9pwzwjwzqcn24jfsbgh6n8gks5x";
hash = "sha256-xpVihdSpjO/mJWM5nzVg9CND3oAEdfCwXQW0jqLVDBA=";
};
nativeBuildInputs = [ cmake ] ++ lib.optional withGPerfTools gperftools;
nativeBuildInputs = [ cmake ];
buildInputs = lib.optionals withGPerfTools [ gperftools ];
outputs = [ "bin" "dev" "out" ];