2021-10-30 20:50:38 +00:00
|
|
|
{ lib, buildOcaml, fetchFromGitHub }:
|
2015-05-15 14:27:54 +00:00
|
|
|
|
|
|
|
buildOcaml rec {
|
2018-03-21 03:46:33 +00:00
|
|
|
version = "112.35.00";
|
2021-10-31 12:35:20 +00:00
|
|
|
pname = "herelib";
|
2015-05-15 14:27:54 +00:00
|
|
|
|
2015-06-20 16:24:40 +00:00
|
|
|
minimumSupportedOcamlVersion = "4.00";
|
2015-05-15 14:27:54 +00:00
|
|
|
|
2021-10-30 20:50:38 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "janestreet";
|
|
|
|
repo = "herelib";
|
|
|
|
rev = version;
|
|
|
|
sha256 = "sha256-EuMhHu2na3lcpsJ1wMVOgBr6VKndlonq8jgAW01eelI=";
|
2015-05-15 14:27:54 +00:00
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/janestreet/herelib";
|
2015-05-15 14:27:54 +00:00
|
|
|
description = "Syntax extension for inserting the current location";
|
2021-01-11 12:49:15 +00:00
|
|
|
license = licenses.asl20;
|
2015-05-15 14:27:54 +00:00
|
|
|
maintainers = [ maintainers.ericbmerritt ];
|
|
|
|
};
|
|
|
|
}
|