summary refs log blame commit diff
path: root/pkgs/development/ocaml-modules/herelib/default.nix
blob: 716e31b2bfe2439f3a0116b09cdc99ecde1e707f (plain) (tree)
1
2
3
4
5
6
7





                               
                                        












                                                                                
{stdenv, buildOcaml, fetchurl}:

buildOcaml rec {
  version = "109.35.02";
  name = "herelib";

  minimumSupportedOcamlVersion = "4.00";

  src = fetchurl {
    url = "https://github.com/janestreet/herelib/archive/${version}.tar.gz";
    sha256 = "7f8394169cb63f6d41e91c9affa1b8ec240d5f6e9dfeda3fbb611df521d4b05a";
  };

  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 ];
  };
}