summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/dune-configurator
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-09-02 19:01:00 -0500
committerVincent Laporte <vbgl@users.noreply.github.com>2020-09-04 15:27:26 +0200
commitc7e8da62257a8ff5537c3b3c43eb68228f51e5df (patch)
treee4e65252310dd7583a8a630e3341d2c13bbfae81 /pkgs/development/ocaml-modules/dune-configurator
parentcadc15222fa8fe399336332960471f0bd5e55331 (diff)
downloadnixpkgs-c7e8da62257a8ff5537c3b3c43eb68228f51e5df.tar
nixpkgs-c7e8da62257a8ff5537c3b3c43eb68228f51e5df.tar.gz
nixpkgs-c7e8da62257a8ff5537c3b3c43eb68228f51e5df.tar.bz2
nixpkgs-c7e8da62257a8ff5537c3b3c43eb68228f51e5df.tar.lz
nixpkgs-c7e8da62257a8ff5537c3b3c43eb68228f51e5df.tar.xz
nixpkgs-c7e8da62257a8ff5537c3b3c43eb68228f51e5df.tar.zst
nixpkgs-c7e8da62257a8ff5537c3b3c43eb68228f51e5df.zip
dune_2: 2.7.0 -> 2.7.1
https://github.com/ocaml/dune/releases/tag/2.7.1
Diffstat (limited to 'pkgs/development/ocaml-modules/dune-configurator')
-rw-r--r--pkgs/development/ocaml-modules/dune-configurator/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/ocaml-modules/dune-configurator/default.nix b/pkgs/development/ocaml-modules/dune-configurator/default.nix
index aa12ebc8d79..16e365dd4f3 100644
--- a/pkgs/development/ocaml-modules/dune-configurator/default.nix
+++ b/pkgs/development/ocaml-modules/dune-configurator/default.nix
@@ -1,15 +1,15 @@
-{ lib, buildDunePackage, dune_2, dune-private-libs }:
+{ lib, buildDunePackage, dune_2, csexp, result }:
 
 buildDunePackage rec {
   pname = "dune-configurator";
 
   useDune2 = true;
 
-  inherit (dune_2) src version;
+  inherit (dune_2) src version patches;
 
   dontAddPrefix = true;
 
-  propagatedBuildInputs = [ dune-private-libs ];
+  propagatedBuildInputs = [ csexp result ];
 
   meta = with lib; {
     description = "Helper library for gathering system configuration";