depot/third_party/nixpkgs/pkgs/development/libraries/opengrm-ngram/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

25 lines
744 B
Nix

{ lib, stdenv, autoreconfHook, fetchurl, openfst }:
stdenv.mkDerivation rec {
pname = "opengrm-ngram";
version = "1.3.11";
src = fetchurl {
url = "http://www.openfst.org/twiki/pub/GRM/NGramDownload/ngram-${version}.tar.gz";
sha256 = "0wwpcj8qncdr9f2pmi0vhlw277dyxr85ygdi8g57xp2ifysigm05";
};
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ openfst ];
enableParallelBuilding = true;
meta = with lib; {
description = "Library to make and modify n-gram language models encoded as weighted finite-state transducers";
homepage = "http://www.openfst.org/twiki/bin/view/GRM/NGramLibrary";
license = licenses.asl20;
maintainers = with maintainers; [ mic92 ];
platforms = platforms.unix;
};
}