ocamlPackages.dune-site: init 2.9.1

Changed files
+21
pkgs
development
ocaml-modules
dune-site
top-level
+19
pkgs/development/ocaml-modules/dune-site/default.nix
···
+
{ lib, buildDunePackage, dune_2, dune-private-libs }:
+
+
buildDunePackage rec {
+
pname = "dune-site";
+
inherit (dune_2) src version patches;
+
+
useDune2 = true;
+
+
dontAddPrefix = true;
+
+
propagatedBuildInputs = [ dune-private-libs ];
+
+
meta = with lib; {
+
description = "A library for embedding location information inside executable and libraries";
+
inherit (dune_2.meta) homepage;
+
maintainers = with lib.maintainers; [ superherointj ];
+
license = licenses.mit;
+
};
+
}
+2
pkgs/top-level/ocaml-packages.nix
···
inherit (pkgs) opam git mercurial coreutils gnutar bzip2;
};
+
dune-site = callPackage ../development/ocaml-modules/dune-site { };
+
duration = callPackage ../development/ocaml-modules/duration { };
earley = callPackage ../development/ocaml-modules/earley { };