1
0
Fork 1
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:
Eric Merritt 2015-05-24 11:42:28 -07:00
parent 96775f0402
commit 9c4bda2530
2 changed files with 24 additions and 0 deletions

View 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 ];
};
}

View file

@ -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 { };