summary refs log tree commit diff
path: root/pkgs/development/libraries/sentencepiece/default.nix
blob: 907e0cc5076098ad64294e8c9b56a30a1a94d949 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ config
, fetchFromGitHub
, stdenv
, lib
, cmake
, gperftools
}:

stdenv.mkDerivation rec {
  pname = "sentencepiece";
  version = "0.1.85";

  src = fetchFromGitHub {
    owner = "google";
    repo = pname;
    rev = "v${version}";
    sha256 = "1ncvyw9ar0z7nd47cysxg5xrjm01y1shdlhp8l2pdpx059p3yx3w";
  };

  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 ];
  };
}