My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/tools/misc/foma/default.nix

37 lines
1022 B

{ lib, stdenv, fetchFromGitHub, zlib, flex, bison, readline, darwin }:
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 ]
++ 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;
};
}