mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
ocaml-async_shell: add initial version (109.28.03) to the system
This commit is contained in:
parent
96775f0402
commit
9c4bda2530
22
pkgs/development/ocaml-modules/async_shell/default.nix
Normal file
22
pkgs/development/ocaml-modules/async_shell/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{stdenv, buildOcaml, fetchurl, async, core, core_extended}:
|
||||
|
||||
buildOcaml rec {
|
||||
name = "async_shell";
|
||||
version = "109.28.03";
|
||||
|
||||
minimumSupportedOcamlVersion = "4.02";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/janestreet/async_shell/archive/${version}.tar.gz";
|
||||
sha256 = "0b4497bea9124c5a665ee58fb0a73c5cbf2f757479df902e6870627196e6c105";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ async core core_extended ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/janestreet/async_shell;
|
||||
description = "Shell helpers for Async";
|
||||
license = licenses.asl20;
|
||||
maintainers = [ maintainers.ericbmerritt ];
|
||||
};
|
||||
}
|
|
@ -4053,6 +4053,8 @@ let
|
|||
|
||||
async_kernel = callPackage ../development/ocaml-modules/async_kernel { };
|
||||
|
||||
async_shell = callPackage ../development/ocaml-modules/async_shell { };
|
||||
|
||||
async_ssl = callPackage ../development/ocaml-modules/async_ssl { };
|
||||
|
||||
async_unix = callPackage ../development/ocaml-modules/async_unix { };
|
||||
|
|
Loading…
Reference in a new issue