ocamlPackages.dune-private-libs: init at 2.1.0

This commit is contained in:
Mario Rodas 2019-12-18 04:25:00 -05:00
parent 1b1f9584e5
commit 6b9504955f
No known key found for this signature in database
GPG key ID: 4C4BEFD7B18DC5E8
2 changed files with 17 additions and 0 deletions

View file

@ -0,0 +1,15 @@
{ lib, buildDunePackage, dune_2 }:
buildDunePackage rec {
pname = "dune-private-libs";
inherit (dune_2) src version;
dontAddPrefix = true;
meta = with lib; {
description = "Private libraries of Dune";
maintainers = [ maintainers.marsam ];
license = licenses.mit;
};
}

View file

@ -241,6 +241,8 @@ let
dune_2 = callPackage ../development/tools/ocaml/dune/2.nix { };
dune-private-libs = callPackage ../development/ocaml-modules/dune-private-libs { buildDunePackage = buildDune2Package; };
earley = callPackage ../development/ocaml-modules/earley { };
earlybird = callPackage ../development/ocaml-modules/earlybird { };