sentencepiece: init at 0.1.84

This commit is contained in:
Pash Shocky 2019-12-07 01:15:09 +00:00 committed by Jon
parent 2b3026f172
commit 82116878da
2 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,31 @@
{ config
, fetchFromGitHub
, stdenv
, lib
, cmake
, gperftools
}:
stdenv.mkDerivation rec {
pname = "sentencepiece";
version = "0.1.84";
src = fetchFromGitHub {
owner = "google";
repo = pname;
rev = "v${version}";
sha256 = "144y25nj4rwxmgvzqbr7al9fjwh3539ssjswvzrx4gsgfk62lsm0";
};
enableParallelBuilding = true;
nativeBuildInputs = [ cmake gperftools ];
meta = with stdenv.lib; {
homepage = https://github.com/google/sentencepiece;
description = "Unsupervised text tokenizer for Neural Network-based text generation";
license = licenses.asl20;
platforms = [ "x86_64-linux" ];
maintainers = with maintainers; [ pashashocky ];
};
}

View File

@ -25611,4 +25611,6 @@ in
gortr = callPackage ../servers/gortr {};
sentencepiece = callPackage ../development/libraries/sentencepiece {};
}