summary refs log tree commit diff
path: root/pkgs/development/tools/parsing/flexc++/default.nix
blob: 0b9c4fcbc644b28bedbae035d8d1eb9ba4c0ee4a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{ stdenv, fetchurl, bobcat, icmake, yodl }:

let version = "2.02.00"; in
stdenv.mkDerivation {
  name = "flexc++-${version}";

  src = fetchurl {
    sha256 = "0mz5d0axr4c8rrmn4iw7b5llmf6f3g9cnjzzz3kw02mfzwll79rz";
    url = "mirror://sourceforge/flexcpp/${version}/flexc++_${version}.orig.tar.gz";
  };

  meta = with stdenv.lib; {
    inherit version;
    description = "";
    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 = http://flexcpp.sourceforge.net/;
    downloadPage = http://sourceforge.net/projects/flexcpp/files/;
    license = licenses.gpl3;
    platforms = with platforms; linux;
    maintainers = with maintainers; [ nckx ];
  };

  buildInputs = [ bobcat ];
  nativeBuildInputs = [ icmake yodl ];

  postPatch = ''
    substituteInPlace INSTALL.im --replace /usr $out
    patchShebangs ./build
  '';

  buildPhase = ''
    ./build man
    ./build manual
    ./build program
  '';

  installPhase = ''
    ./build install man
    ./build install manual
    ./build install program
    ./build install skel
    ./build install std
  '';
}