about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/science/machine-learning/fasttext/default.nix
blob: 0ae9a74d0d0a50e32949340ffc64a16a303ddbea (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
{stdenv, fetchFromGitHub, cmake}:

stdenv.mkDerivation rec {
  pname = "fasttext";
  version = "0.2.0";

  src = fetchFromGitHub {
    owner = "facebookresearch";
    repo = "fastText";
    rev = version;
    sha256 = "1fcrz648r2s80bf7vc0l371xillz5jk3ldaiv9jb7wnsyri831b4";
  };

  nativeBuildInputs = [ cmake ];

  meta = with stdenv.lib; {
    description = "Library for text classification and representation learning";
    homepage = https://fasttext.cc/;
    license = licenses.mit;
    platforms = platforms.unix;
    maintainers = [ maintainers.danieldk ];
  };
}