about summary refs log tree commit diff
path: root/pkgs/tools/misc/foma/default.nix
blob: ea229b20445f17f6fb9a2343d7fff5fc91ca4324 (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
33
34
35
36
37
{ lib, stdenv, fetchFromGitHub, zlib, flex, bison, readline, darwin }:

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

  src = fetchFromGitHub {
    owner = "mhulden";
    repo = "foma";
    rev = "82f9acdef234eae8b7619ccc3a386cc0d7df62bc";
    sha256 = "1vf01l18j8cksnavbabcckp9gg692w6v5lg81xrzv6f5v14zp4nr";
  };

  sourceRoot = "source/foma";

  nativeBuildInputs = [ flex bison ]
    ++ lib.optional stdenv.isDarwin darwin.cctools;
  buildInputs = [ zlib readline ];

  makeFlags = [
    "CC=${stdenv.cc.targetPrefix}cc"
  ];

  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;
  };
}