mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
35 lines
757 B
Nix
35 lines
757 B
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, stdenv
|
|
, cmake
|
|
, gperftools
|
|
|
|
, withGPerfTools ? true
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "sentencepiece";
|
|
version = "0.1.95";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "google";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "0mv7vgsvd7hjssidxy7fjfmwqy68vjcia8pajji11q2fkfp3cg67";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = lib.optionals withGPerfTools [ gperftools ];
|
|
|
|
outputs = [ "bin" "dev" "out" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/google/sentencepiece";
|
|
description = "Unsupervised text tokenizer for Neural Network-based text generation";
|
|
license = licenses.asl20;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ danieldk pashashocky ];
|
|
};
|
|
}
|