2021-01-11 05:14:57 -08:00
|
|
|
{lib, buildOcaml, fetchurl}:
|
2015-05-15 07:27:54 -07:00
|
|
|
|
|
|
|
buildOcaml rec {
|
2018-03-20 20:46:33 -07:00
|
|
|
version = "112.35.00";
|
2015-05-15 07:27:54 -07:00
|
|
|
name = "herelib";
|
|
|
|
|
2015-06-20 09:24:40 -07:00
|
|
|
minimumSupportedOcamlVersion = "4.00";
|
2015-05-15 07:27:54 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/janestreet/herelib/archive/${version}.tar.gz";
|
2018-03-20 20:46:33 -07:00
|
|
|
sha256 = "03rrlpjmnd8d1rzzmd112355m7a5bwn3vf90xkbc6gkxlad9cxbs";
|
2015-05-15 07:27:54 -07:00
|
|
|
};
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/janestreet/herelib";
|
2015-05-15 07:27:54 -07:00
|
|
|
description = "Syntax extension for inserting the current location";
|
2021-01-11 04:49:15 -08:00
|
|
|
license = licenses.asl20;
|
2015-05-15 07:27:54 -07:00
|
|
|
maintainers = [ maintainers.ericbmerritt ];
|
|
|
|
};
|
|
|
|
}
|