depot/third_party/nixpkgs/pkgs/development/tools/parsing/re-flex/default.nix
Default email c7f94ff3ce Project import generated by Copybara.
GitOrigin-RevId: b85ed9dcbf187b909ef7964774f8847d554fab3b
2023-08-22 22:05:09 +02:00

30 lines
675 B
Nix

{ lib
, stdenv
, fetchFromGitHub
, autoreconfHook
, boost
, autoconf
, automake
}:
stdenv.mkDerivation rec {
pname = "re-flex";
version = "3.3.8";
src = fetchFromGitHub {
owner = "Genivia";
repo = "RE-flex";
rev = "v${version}";
sha256 = "sha256-ujBdR4NDY9TwHwghtj2uMJoLtuYpzw5cUCMSbEsXlmY=";
};
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 ];
};
}