2015-09-01 02:27:48 +01:00
|
|
|
{ stdenv, fetchFromGitHub, bobcat, icmake, yodl }:
|
2015-05-05 17:55:28 +01:00
|
|
|
|
2016-01-24 19:31:44 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2015-05-05 17:55:28 +01:00
|
|
|
name = "flexc++-${version}";
|
2016-04-14 01:06:39 +01:00
|
|
|
version = "2.05.00";
|
2015-05-05 17:55:28 +01:00
|
|
|
|
2015-09-01 02:27:48 +01:00
|
|
|
src = fetchFromGitHub {
|
2016-04-14 01:06:39 +01:00
|
|
|
sha256 = "0s25d9jsfsqvm34rwf48cxwz23aq1zja3cqlzfz3z33p29wwazwz";
|
2015-09-01 02:27:48 +01:00
|
|
|
rev = version;
|
|
|
|
repo = "flexcpp";
|
|
|
|
owner = "fbb-git";
|
2015-05-05 17:55:28 +01:00
|
|
|
};
|
|
|
|
|
2017-11-02 12:54:20 +00:00
|
|
|
setSourceRoot = ''
|
|
|
|
sourceRoot=$(echo */flexc++)
|
|
|
|
'';
|
2015-09-01 02:27:48 +01:00
|
|
|
|
2015-07-22 15:25:00 +01:00
|
|
|
buildInputs = [ bobcat ];
|
2015-06-17 18:36:06 +01:00
|
|
|
nativeBuildInputs = [ icmake yodl ];
|
2015-05-05 17:55:28 +01:00
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace INSTALL.im --replace /usr $out
|
2016-03-18 21:12:03 +00:00
|
|
|
patchShebangs .
|
2015-05-05 17:55:28 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
buildPhase = ''
|
|
|
|
./build man
|
|
|
|
./build manual
|
|
|
|
./build program
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
2016-03-18 21:12:03 +00:00
|
|
|
./build install x
|
2015-05-05 17:55:28 +01:00
|
|
|
'';
|
2016-01-24 19:31:44 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "C++ tool for generating lexical scanners";
|
|
|
|
longDescription = ''
|
|
|
|
Flexc++ was designed after `flex'. Flexc++ offers a cleaner class design
|
|
|
|
and requires simpler specification files than offered by flex's C++
|
|
|
|
option.
|
|
|
|
'';
|
|
|
|
homepage = https://fbb-git.github.io/flexcpp/;
|
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
2015-05-05 17:55:28 +01:00
|
|
|
}
|