ocaml-async_find: add initial version (111.28.00) to the system
This commit is contained in:
parent
9c4bda2530
commit
27541f65f3
2 changed files with 24 additions and 0 deletions
22
pkgs/development/ocaml-modules/async_find/default.nix
Normal file
22
pkgs/development/ocaml-modules/async_find/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{stdenv, buildOcaml, fetchurl, async, core, sexplib}:
|
||||
|
||||
buildOcaml rec {
|
||||
name = "async_find";
|
||||
version = "111.28.00";
|
||||
|
||||
minimumSupportedOcamlVersion = "4.02";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/janestreet/async_find/archive/${version}.tar.gz";
|
||||
sha256 = "4e3fda72f50174f05d96a5a09323f236c041b1a685890c155822956f3deb8803";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ async core sexplib ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/janestreet/async_find;
|
||||
description = "Directory traversal with Async";
|
||||
license = licenses.asl20;
|
||||
maintainers = [ maintainers.ericbmerritt ];
|
||||
};
|
||||
}
|
|
@ -4051,6 +4051,8 @@ let
|
|||
|
||||
async_extra = callPackage ../development/ocaml-modules/async_extra { };
|
||||
|
||||
async_find = callPackage ../development/ocaml-modules/async_find { };
|
||||
|
||||
async_kernel = callPackage ../development/ocaml-modules/async_kernel { };
|
||||
|
||||
async_shell = callPackage ../development/ocaml-modules/async_shell { };
|
||||
|
|
Loading…
Reference in a new issue