Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-19.03 20 lines 560 B view raw
1{stdenv, buildOcaml, fetchurl}: 2 3buildOcaml rec { 4 version = "112.35.00"; 5 name = "herelib"; 6 7 minimumSupportedOcamlVersion = "4.00"; 8 9 src = fetchurl { 10 url = "https://github.com/janestreet/herelib/archive/${version}.tar.gz"; 11 sha256 = "03rrlpjmnd8d1rzzmd112355m7a5bwn3vf90xkbc6gkxlad9cxbs"; 12 }; 13 14 meta = with stdenv.lib; { 15 homepage = https://github.com/janestreet/herelib; 16 description = "Syntax extension for inserting the current location"; 17 license = stdenv.lib.licenses.asl20; 18 maintainers = [ maintainers.ericbmerritt ]; 19 }; 20}