nixpkgs/pkgs/development/libraries/sentencepiece/default.nix

33 lines
735 B
Nix
Raw Normal View History

{ lib
2019-12-07 02:15:09 +01:00
, fetchFromGitHub
, stdenv
, cmake
, gperftools
, withGPerfTools ? true
2019-12-07 02:15:09 +01:00
}:
stdenv.mkDerivation rec {
pname = "sentencepiece";
2020-01-17 11:41:53 +01:00
version = "0.1.85";
2019-12-07 02:15:09 +01:00
src = fetchFromGitHub {
owner = "google";
repo = pname;
rev = "v${version}";
2020-01-17 11:41:53 +01:00
sha256 = "1ncvyw9ar0z7nd47cysxg5xrjm01y1shdlhp8l2pdpx059p3yx3w";
2019-12-07 02:15:09 +01:00
};
nativeBuildInputs = [ cmake ] ++ lib.optional withGPerfTools gperftools;
outputs = [ "bin" "dev" "out" ];
2019-12-07 02:15:09 +01:00
meta = with stdenv.lib; {
homepage = "https://github.com/google/sentencepiece";
2019-12-07 02:15:09 +01:00
description = "Unsupervised text tokenizer for Neural Network-based text generation";
license = licenses.asl20;
platforms = platforms.unix;
2019-12-07 02:15:09 +01:00
maintainers = with maintainers; [ pashashocky ];
};
}