about summary refs log tree commit diff
path: root/pkgs/tools/misc/foma/default.nix
blob: 5d82f699e7d8c40dffe4ce1dff726e31daca17a7 (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
38
39
40
{ 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 = "${src.name}/foma";

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

  makeFlags = [
    "CC:=$(CC)"
    "RANLIB:=$(RANLIB)"
    "prefix=$(out)"
  ] ++ lib.optionals (!stdenv.isDarwin) [
    "AR:=$(AR)" # libtool is used for darwin
  ];

  patchPhase = ''
    substituteInPlace Makefile \
      --replace '-ltermcap' ' '
  '';

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