Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-18.03 22 lines 648 B view raw
1{stdenv, buildOcaml, fetchurl, async_p4, core_p4, core_extended_p4}: 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_p4 core_p4 core_extended_p4 ]; 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}