ocamlPackages.semaphore-compat: init at 1.0.1

This commit is contained in:
sternenseemann 2021-01-18 16:23:22 +01:00 committed by Vincent Laporte
parent a0dc0f6f2c
commit f31d62b49e
No known key found for this signature in database
GPG key ID: EBD582ADDDB1F81F
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,20 @@
{ lib, buildDunePackage, fetchurl }:
buildDunePackage rec {
pname = "semaphore-compat";
version = "1.0.1";
src = fetchurl {
url = "https://github.com/mirage/semaphore-compat/releases/download/${version}/semaphore-compat-${version}.tbz";
sha256 = "139c5rxdp4dg1jcwyyxvhxr8213l1xdl2ab0mc288rfcppsiyxrb";
};
useDune2 = true;
meta = with lib; {
description = "Compatibility Semaphore module";
homepage = "https://github.com/mirage/semaphore-compat";
license = licenses.lgpl21Only;
maintainers = [ maintainers.sternenseemann ];
};
}

View file

@ -1053,6 +1053,8 @@ let
sedlex_2 = callPackage ../development/ocaml-modules/sedlex/2.nix { };
semaphore-compat = callPackage ../development/ocaml-modules/semaphore-compat { };
sodium = callPackage ../development/ocaml-modules/sodium { };
spelll = callPackage ../development/ocaml-modules/spelll { };