nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

ocamlPackages.dap: use dune 3

authored by

Vincent Laporte and committed by
Vincent Laporte
cbaeba7e ebbb00a8

+2 -2
+2 -2
pkgs/development/ocaml-modules/dap/default.nix
··· 5 5 buildDunePackage rec { 6 6 pname = "dap"; 7 7 version = "1.0.6"; 8 - useDune2 = true; 8 + duneVersion = "3"; 9 9 src = fetchurl { 10 10 url = "https://github.com/hackwaly/ocaml-dap/releases/download/${version}/dap-${version}.tbz"; 11 11 sha256 = "1zq0f8429m38a4x3h9n3rv7n1vsfjbs72pfi5902a89qwyilkcp0"; 12 12 }; 13 13 14 - minimumOCamlVersion = "4.08"; 14 + minimalOCamlVersion = "4.08"; 15 15 16 16 buildInputs = [ 17 17 lwt_ppx