Skip to content

Commit

Permalink
Merge pull request #294403 from marsam/update-re-flex
Browse files Browse the repository at this point in the history
re-flex: 4.0.1 -> 4.1.0
  • Loading branch information
marsam authored Mar 14, 2024
2 parents 12ff623 + e61656f commit 030da88
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions pkgs/development/tools/parsing/re-flex/default.nix
Original file line number Diff line number Diff line change
@@ -1,30 +1,32 @@
{ lib
, stdenv
, fetchFromGitHub
, autoreconfHook
, boost
, autoconf
, automake
, cmake
}:

stdenv.mkDerivation rec {
pname = "re-flex";
version = "4.0.1";
version = "4.1.0";

src = fetchFromGitHub {
owner = "Genivia";
repo = "RE-flex";
rev = "v${version}";
sha256 = "sha256-eQ2+RthvOKCd2Dl6i+9DahJArFfOhPJkn6PI/yuaqos=";
hash = "sha256-pjYiCRKaskJg1IuCxNBUQ9FY2abGi4HEZxsfZ5ctjNY=";
};

nativeBuildInputs = [ boost autoconf automake ];
outputs = [ "out" "bin" "dev" ];

nativeBuildInputs = [
cmake
];

meta = with lib; {
homepage = "https://github.com/Genivia/RE-flex";
homepage = "https://www.genivia.com/doc/reflex/html";
description = "The regex-centric, fast lexical analyzer generator for C++ with full Unicode support";
license = licenses.bsd3;
platforms = platforms.unix;
platforms = platforms.all;
maintainers = with lib.maintainers; [ prrlvr ];
mainProgram = "reflex";
};
}

0 comments on commit 030da88

Please sign in to comment.