2c76a4cb41
GitOrigin-RevId: c757e9bd77b16ca2e03c89bf8bc9ecb28e0c06ad
30 lines
675 B
Nix
30 lines
675 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, autoreconfHook
|
|
, boost
|
|
, autoconf
|
|
, automake
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "re-flex";
|
|
version = "3.5.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Genivia";
|
|
repo = "RE-flex";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-gk+VVfjVPopuzhrEuWNxQxKYjOFbqOGD9YS1npN71Bg=";
|
|
};
|
|
|
|
nativeBuildInputs = [ boost autoconf automake ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/Genivia/RE-flex";
|
|
description = "The regex-centric, fast lexical analyzer generator for C++ with full Unicode support";
|
|
license = licenses.bsd3;
|
|
platforms = platforms.unix;
|
|
maintainers = with lib.maintainers; [ prrlvr ];
|
|
};
|
|
}
|