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