summaryrefslogtreecommitdiffstats
path: root/pkgs/by-name/bi/bisoncpp/package.nix
blob: 877db23d7680daf1f8f1fbade1a0785a1f9e9d27 (plain)
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
  lib,
  stdenv,
  fetchurl,
  fetchFromGitLab,
  yodl,
  icmake,
  flexcpp,
  bobcat,
}:
stdenv.mkDerivation rec {
  pname = "bisonc++";
  version = "6.04.00";

  src = fetchFromGitLab {
    owner = "fbb-git";
    repo = "bisoncpp";
    rev = "6.04.00";
    hash = "sha256:0aa9bij4g08ilsk6cgrbgi03vyhqr9fn6j2164sjin93m63212wl";
  };

  buildInputs = [ bobcat ];

  nativeBuildInputs = [
    yodl
    icmake
    flexcpp
  ];

  setSourceRoot = ''
    sourceRoot="$(echo */bisonc++)"
  '';

  gpl = fetchurl {
    url = "https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt";
    sha256 = "sha256:0hq6i0dm4420825fdm0lnnppbil6z67ls67n5kgjcd912dszjxw1";
  };

  postPatch = ''
    substituteInPlace INSTALL.im --replace /usr $out
    patchShebangs .
    for file in $(find documentation -type f); do
      substituteInPlace "$file" --replace /usr/share/common-licenses/GPL ${gpl}
      substituteInPlace "$file" --replace /usr $out
    done
  '';

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

  installPhase = ''
    ./build install x
  '';

  meta = {
    description = "Parser generator like bison, but it generates C++ code";
    mainProgram = "bisonc++";
    license = lib.licenses.gpl2Plus;
    maintainers = with lib.maintainers; [ raskin ];
    platforms = lib.platforms.linux;
    homepage = "https://fbb-git.gitlab.io/bisoncpp/";
  };
}