ocaml-herelib: add initial version (109.35.02) to the system
This commit is contained in:
parent
8a9d5637bc
commit
86e8c73d7b
20
pkgs/development/ocaml-modules/herelib/default.nix
Normal file
20
pkgs/development/ocaml-modules/herelib/default.nix
Normal file
@ -0,0 +1,20 @@
|
||||
{stdenv, buildOcaml, fetchurl}:
|
||||
|
||||
buildOcaml rec {
|
||||
version = "109.35.02";
|
||||
name = "herelib";
|
||||
|
||||
minimumSupportedOcamlVersion = "4.02";
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
@ -4156,6 +4156,8 @@ let
|
||||
|
||||
functory = callPackage ../development/ocaml-modules/functory { };
|
||||
|
||||
herelib = callPackage ../development/ocaml-modules/herelib { };
|
||||
|
||||
io-page = callPackage ../development/ocaml-modules/io-page { };
|
||||
|
||||
javalib = callPackage ../development/ocaml-modules/javalib {
|
||||
|
Loading…
Reference in New Issue
Block a user