ocamlPackages.headache: init at 1.06

This commit is contained in:
Niols 2023-04-12 08:33:09 +00:00
parent 6deaf0e061
commit 0dc61806f6
No known key found for this signature in database
GPG Key ID: 0B4EB01A5527EA54
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ lib, buildDunePackage, fetchFromGitHub, camomile }:
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 ];
};
}

View File

@ -609,6 +609,8 @@ let
hashcons = callPackage ../development/ocaml-modules/hashcons { };
headache = callPackage ../development/ocaml-modules/headache { };
hex = callPackage ../development/ocaml-modules/hex { };
hidapi = callPackage ../development/ocaml-modules/hidapi { };