summary refs log tree commit diff
path: root/pkgs/tools/misc/foma/default.nix
blob: 2bde606adbe6ad24a3e743597ba2c6e3b5fc22c3 (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
24
25
26
27
28
29
30
31
32
{ lib, stdenv, fetchFromGitHub, zlib, flex, bison, readline }:

stdenv.mkDerivation rec {
  pname = "foma";
  version = "0.9.18alpha";

  src = fetchFromGitHub {
    owner = "mhulden";
    repo = "foma";
    rev = "4456a40e81f46e3fe909c5a97a15fcf1d2a3b6c1";
    sha256 = "188yxj8wahlj2yf93rj1vx549j5cq0085d2jmj3vwzbfjq1mi1f0";
  };

  sourceRoot = "source/foma";

  nativeBuildInputs = [ flex bison ];
  buildInputs = [ zlib readline ];

  patchPhase = ''
    substituteInPlace Makefile \
      --replace '-ltermcap' ' ' \
      --replace '/usr/local' '$(out)'
  '';

  meta = with lib; {
    description = "A multi-purpose finite-state toolkit designed for applications ranging from natural language processing to research in automata theory";
    homepage = "https://github.com/mhulden/foma";
    license = licenses.asl20;
    maintainers = [ maintainers.tckmn ];
    platforms = platforms.all;
  };
}