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

35 lines
771 B
Nix
Raw Normal View History

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