Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21630,6 +21630,11 @@
githubId = 77415970;
name = "Redhawk";
};
redianthus = {
Copy link
Contributor

@superherointj superherointj Oct 7, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

email and name are missing.

The name is important because since people are going to trust your code, we should at least know who you are.

redianthus I did try to contact you over e-mail but since it wasn't available it wasn't possible.

You have requested to join OCaml team at GitHub, unfortunately I have lost my authorization access (can't generate security tokens) to GitHub. So I'm unable to grant you access until I'm able to recover my credential. Also, if you want to join the OCaml team, I think, you should consider adding yourself to the OCaml team here.

github = "redianthus";
githubId = 16472988;
name = "redianthus";
};
redlonghead = {
email = "git@beardit.net";
github = "Redlonghead";
Expand Down
32 changes: 32 additions & 0 deletions pkgs/development/ocaml-modules/synchronizer/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
lib,
fetchFromGitHub,
buildDunePackage,
prelude,
}:

buildDunePackage rec {
pname = "synchronizer";
version = "0.1";

minimalOCamlVersion = "5.1";

src = fetchFromGitHub {
owner = "OCamlPro";
repo = "synchronizer";
tag = version;
hash = "sha256-VlKqORXTXafT88GXHIYkz+A1VkEL3jP9SMqDdMyEdrw=";
};

propagatedBuildInputs = [
prelude
];

meta = {
homepage = "https://github.com/OCamlPro/synchronizer";
description = "Synchronizer to make datastructures thread-safe";
changelog = "https://raw.githubusercontent.com/OCamlPro/synchronizer/${src.rev}/CHANGES.md";
license = lib.licenses.agpl3Plus;
maintainers = with lib.maintainers; [ redianthus ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/ocaml-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -1977,6 +1977,8 @@ let

swhid_core = callPackage ../development/ocaml-modules/swhid_core { };

synchronizer = callPackage ../development/ocaml-modules/synchronizer { };

syslog = callPackage ../development/ocaml-modules/syslog { };

syslog-message = callPackage ../development/ocaml-modules/syslog-message { };
Expand Down
Loading