biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / parsing / flexc++ / default.nix
blob1a56818b4d65b6ba2f1465227fc7c98215ddd087
1 { lib, stdenv, fetchFromGitHub, bobcat, icmake, yodl }:
3 stdenv.mkDerivation rec {
4   pname = "flexc++";
5   version = "2.05.00";
7   src = fetchFromGitHub {
8     sha256 = "0s25d9jsfsqvm34rwf48cxwz23aq1zja3cqlzfz3z33p29wwazwz";
9     rev = version;
10     repo = "flexcpp";
11     owner = "fbb-git";
12   };
14   setSourceRoot = ''
15     sourceRoot=$(echo */flexc++)
16   '';
18   buildInputs = [ bobcat ];
19   nativeBuildInputs = [ icmake yodl ];
21   postPatch = ''
22     substituteInPlace INSTALL.im --replace /usr $out
23     patchShebangs .
24   '';
26   buildPhase = ''
27     ./build man
28     ./build manual
29     ./build program
30   '';
32   installPhase = ''
33     ./build install x
34   '';
36   meta = with lib; {
37     description = "C++ tool for generating lexical scanners";
38     mainProgram = "flexc++";
39     longDescription = ''
40       Flexc++ was designed after `flex'. Flexc++ offers a cleaner class design
41       and requires simpler specification files than offered by flex's C++
42       option.
43     '';
44     homepage = "https://fbb-git.github.io/flexcpp/";
45     license = licenses.gpl3;
46     platforms = platforms.linux;
47   };