nixpkgs/pkgs/development/ocaml-modules/frontc/default.nix
2022-04-18 21:53:30 +02:00

26 lines
587 B
Nix

{ lib, buildDunePackage, fetchFromGitHub, ocaml, menhir }:
buildDunePackage rec {
pname = "FrontC";
version = "4.1.0";
src = fetchFromGitHub {
owner = "BinaryAnalysisPlatform";
repo = "FrontC";
rev = "v${version}";
sha256 = "1mi1vh4qgscnb470qwidccaqd068j1bqlz6pf6wddk21paliwnqb";
};
minimalOCamlVersion = "4.08";
nativeBuildInputs = [ menhir ];
meta = with lib; {
inherit (src.meta) homepage;
inherit (ocaml.meta) platforms;
description = "C Parsing Library";
license = licenses.lgpl21;
maintainers = [ maintainers.maurer ];
};
}