Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / tools / parsing / flexc++ / default.nix
blobe4db5631e7fe04d0836847a771d00a0c5f122c45
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     longDescription = ''
39       Flexc++ was designed after `flex'. Flexc++ offers a cleaner class design
40       and requires simpler specification files than offered by flex's C++
41       option.
42     '';
43     homepage = "https://fbb-git.github.io/flexcpp/";
44     license = licenses.gpl3;
45     platforms = platforms.linux;
46   };