dae973cb59
GitOrigin-RevId: c90c4025bb6e0c4eaf438128a3b2640314b1c58d
30 lines
668 B
Nix
30 lines
668 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, autoreconfHook
|
|
, boost
|
|
, autoconf
|
|
, automake
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "re-flex";
|
|
version = "3.3.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Genivia";
|
|
repo = "RE-flex";
|
|
rev = "v${version}";
|
|
sha256 = "w3ecuUa7lBtRv071acBIZGcpjBZD4UvVQdUzT7qWiMo=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|