2021-01-11 07:54:33 +00:00
|
|
|
{lib, stdenv, fetchFromGitHub, cmake}:
|
2019-05-02 17:04:55 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "fasttext";
|
2023-12-13 14:48:01 +00:00
|
|
|
version = "0.9.2-unstable-2023-11-28";
|
2019-05-02 17:04:55 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "facebookresearch";
|
|
|
|
repo = "fastText";
|
2023-12-13 14:48:01 +00:00
|
|
|
rev = "6c2204ba66776b700095ff73e3e599a908ffd9c3";
|
|
|
|
hash = "sha256-lSIah4T+QqZwCRpeI3mxJ7PZT6pSHBO26rcEFfK8DSk=";
|
2019-05-02 17:04:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-05-02 17:04:55 +00:00
|
|
|
description = "Library for text classification and representation learning";
|
2024-03-19 02:14:51 +00:00
|
|
|
mainProgram = "fasttext";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://fasttext.cc/";
|
2019-05-02 17:04:55 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.unix;
|
2021-09-12 14:42:12 +00:00
|
|
|
maintainers = [ ];
|
2019-05-02 17:04:55 +00:00
|
|
|
};
|
|
|
|
}
|