depot/third_party/nixpkgs/pkgs/development/tools/parsing/re-flex/default.nix
Default email 9c6ee729d6 Project import generated by Copybara.
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
2023-07-15 19:15:38 +02:00

30 lines
675 B
Nix

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