ocamlPackages.swhid_core: init at 0.1

This commit is contained in:
Vincent Laporte 2024-07-24 08:01:17 +02:00 committed by Vincent Laporte
parent b34ee7d484
commit 185a57d2b5
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{
lib,
fetchFromGitHub,
buildDunePackage,
}:
buildDunePackage rec {
pname = "swhid_core";
version = "0.1";
minimalOCamlVersion = "4.03";
src = fetchFromGitHub {
owner = "OCamlPro";
repo = "swhid_core";
rev = version;
hash = "sha256-uLnVbptCvmBeNbOjGjyAWAKgzkKLDTYVFY6SNH2zf0A=";
};
meta = {
description = "OCaml library to work with swhids";
homepage = "https://github.com/ocamlpro/swhid_core";
license = lib.licenses.isc;
maintainers = [ lib.maintainers.vbgl ];
};
}

View File

@ -1746,6 +1746,8 @@ let
stringext = callPackage ../development/ocaml-modules/stringext { };
swhid_core = callPackage ../development/ocaml-modules/swhid_core { };
syslog = callPackage ../development/ocaml-modules/syslog { };
syslog-message = callPackage ../development/ocaml-modules/syslog-message { };