about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/dune-private-libs
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2022-03-16 17:30:55 +0100
committerVincent Laporte <vbgl@users.noreply.github.com>2022-03-28 07:08:14 +0200
commit7cc596593c5cae180024b1322f366847ae764bbe (patch)
tree4f48da55a9358b702bf3490a34e013e71c19b04b /pkgs/development/ocaml-modules/dune-private-libs
parentb19721dc2a8ceb8d1f46260aad0d5a8783a4b499 (diff)
ocamlPackages.dune-private-libs: 2.9.3 → 3.0.3
ocamlPackages.dune-site: 2.9.3 → 3.0.3
ocamlPackages.dune-glob: 2.9.3 → 3.0.3
ocamlPackages.dune-action-plugin: 2.9.3 → 3.0.3
Diffstat (limited to 'pkgs/development/ocaml-modules/dune-private-libs')
-rw-r--r--pkgs/development/ocaml-modules/dune-private-libs/default.nix10
1 files changed, 6 insertions, 4 deletions
diff --git a/pkgs/development/ocaml-modules/dune-private-libs/default.nix b/pkgs/development/ocaml-modules/dune-private-libs/default.nix
index 8a635efa3a599..9b45064d1984e 100644
--- a/pkgs/development/ocaml-modules/dune-private-libs/default.nix
+++ b/pkgs/development/ocaml-modules/dune-private-libs/default.nix
@@ -1,16 +1,18 @@
-{ lib, buildDunePackage, dune_2 }:
+{ lib, buildDunePackage, dune_3, stdune }:
 
 buildDunePackage rec {
   pname = "dune-private-libs";
 
-  useDune2 = true;
+  duneVersion = "3";
 
-  inherit (dune_2) src version patches;
+  inherit (dune_3) src version;
 
-  minimumOCamlVersion = "4.08";
+  minimalOCamlVersion = "4.08";
 
   dontAddPrefix = true;
 
+  propagatedBuildInputs = [ stdune ];
+
   meta = with lib; {
     description = "Private libraries of Dune";
     maintainers = [ maintainers.marsam ];