1{stdenv, buildOcaml, fetchurl, async, core, core_extended}: 2 3buildOcaml rec { 4 name = "async_shell"; 5 version = "109.28.03"; 6 7 minimumSupportedOcamlVersion = "4.02"; 8 9 src = fetchurl { 10 url = "https://github.com/janestreet/async_shell/archive/${version}.tar.gz"; 11 sha256 = "0b4497bea9124c5a665ee58fb0a73c5cbf2f757479df902e6870627196e6c105"; 12 }; 13 14 propagatedBuildInputs = [ async core core_extended ]; 15 16 meta = with stdenv.lib; { 17 homepage = https://github.com/janestreet/async_shell; 18 description = "Shell helpers for Async"; 19 license = licenses.asl20; 20 maintainers = [ maintainers.ericbmerritt ]; 21 }; 22}