mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
Merge pull request #108633 from tckmn/add-foma
This commit is contained in:
commit
5796227734
32
pkgs/tools/misc/foma/default.nix
Normal file
32
pkgs/tools/misc/foma/default.nix
Normal file
@ -0,0 +1,32 @@
|
||||
{ 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 stdenv.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;
|
||||
};
|
||||
}
|
@ -28046,6 +28046,8 @@ in
|
||||
fahcontrol = callPackage ../applications/science/misc/foldingathome/control.nix {};
|
||||
fahviewer = callPackage ../applications/science/misc/foldingathome/viewer.nix {};
|
||||
|
||||
foma = callPackage ../tools/misc/foma { };
|
||||
|
||||
foo2zjs = callPackage ../misc/drivers/foo2zjs {};
|
||||
|
||||
foomatic-filters = callPackage ../misc/drivers/foomatic-filters {};
|
||||
|
Loading…
Reference in New Issue
Block a user