nixpkgs/pkgs/tools/misc/foma/default.nix

33 lines
904 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, zlib, flex, bison, readline }:
2021-01-07 02:54:02 +00:00
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; {
2021-01-07 02:54:02 +00:00
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;
};
}