2023-06-07 12:51:16 +00:00
|
|
|
{ lib, fetchFromGitHub, ocamlPackages }:
|
|
|
|
|
|
|
|
with ocamlPackages;
|
2023-04-12 08:33:09 +00:00
|
|
|
|
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "headache";
|
|
|
|
version = "1.06";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "frama-c";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "sha256-BA7u09MKYMyspFX8AcAkDVA6UUG5DKAdbIDdt+b3Fc4=";
|
|
|
|
};
|
|
|
|
|
|
|
|
duneVersion = "3";
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ camomile ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/frama-c/${pname}";
|
|
|
|
description = "Lightweight tool for managing headers in source code files";
|
|
|
|
license = licenses.lgpl2Plus;
|
|
|
|
maintainers = with maintainers; [ niols ];
|
|
|
|
};
|
|
|
|
}
|