mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
25 lines
587 B
Nix
25 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 ];
|
|
};
|
|
}
|