lol

ocaml-herelib: add initial version (109.35.02) to the system

+22
+20
pkgs/development/ocaml-modules/herelib/default.nix
··· 1 + {stdenv, buildOcaml, fetchurl}: 2 + 3 + buildOcaml rec { 4 + version = "109.35.02"; 5 + name = "herelib"; 6 + 7 + minimumSupportedOcamlVersion = "4.02"; 8 + 9 + src = fetchurl { 10 + url = "https://github.com/janestreet/herelib/archive/${version}.tar.gz"; 11 + sha256 = "7f8394169cb63f6d41e91c9affa1b8ec240d5f6e9dfeda3fbb611df521d4b05a"; 12 + }; 13 + 14 + meta = with stdenv.lib; { 15 + homepage = https://github.com/janestreet/herelib; 16 + description = "Syntax extension for inserting the current location"; 17 + license = stdenv.lib.licenses.asl20; 18 + maintainers = [ maintainers.ericbmerritt ]; 19 + }; 20 + }
+2
pkgs/top-level/all-packages.nix
··· 4156 4156 4157 4157 functory = callPackage ../development/ocaml-modules/functory { }; 4158 4158 4159 + herelib = callPackage ../development/ocaml-modules/herelib { }; 4160 + 4159 4161 io-page = callPackage ../development/ocaml-modules/io-page { }; 4160 4162 4161 4163 javalib = callPackage ../development/ocaml-modules/javalib {