mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
ocamlPackages.semaphore-compat: init at 1.0.1
This commit is contained in:
parent
a0dc0f6f2c
commit
f31d62b49e
2 changed files with 22 additions and 0 deletions
20
pkgs/development/ocaml-modules/semaphore-compat/default.nix
Normal file
20
pkgs/development/ocaml-modules/semaphore-compat/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue