2021-01-15 22:18:51 +00:00
|
|
|
{lib, buildOcaml, fetchurl}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildOcaml rec {
|
|
|
|
version = "112.35.00";
|
2021-12-06 16:07:01 +00:00
|
|
|
pname = "herelib";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
minimumSupportedOcamlVersion = "4.00";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/janestreet/herelib/archive/${version}.tar.gz";
|
|
|
|
sha256 = "03rrlpjmnd8d1rzzmd112355m7a5bwn3vf90xkbc6gkxlad9cxbs";
|
|
|
|
};
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
homepage = "https://github.com/janestreet/herelib";
|
|
|
|
description = "Syntax extension for inserting the current location";
|
2021-01-15 22:18:51 +00:00
|
|
|
license = licenses.asl20;
|
2020-04-24 23:36:52 +00:00
|
|
|
maintainers = [ maintainers.ericbmerritt ];
|
|
|
|
};
|
|
|
|
}
|