504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
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.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Genivia";
|
|
repo = "RE-flex";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-AP8889MQSAq/CIfZRDOkaqkTrT6EPqHK0bbeLa9v6h8=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|