2015-05-15 15:27:54 +01:00
|
|
|
{stdenv, buildOcaml, fetchurl}:
|
|
|
|
|
|
|
|
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
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://github.com/janestreet/herelib;
|
|
|
|
description = "Syntax extension for inserting the current location";
|
|
|
|
license = stdenv.lib.licenses.asl20;
|
|
|
|
maintainers = [ maintainers.ericbmerritt ];
|
|
|
|
};
|
|
|
|
}
|