about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/owl-base
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2023-02-09 08:10:33 +0100
committerVincent Laporte <vbgl@users.noreply.github.com>2023-02-16 08:36:24 +0100
commit55f76accb31ffc52ec58241961c92fe62dc1ccd3 (patch)
tree7ee85febdffc1223f5b8dcc75fec4342b6b526d9 /pkgs/development/ocaml-modules/owl-base
parent2d2429bf8a982a8e1a490e2515b2aa21e1f37db7 (diff)
ocamlPackages.owl: use Dune 3
Diffstat (limited to 'pkgs/development/ocaml-modules/owl-base')
-rw-r--r--pkgs/development/ocaml-modules/owl-base/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/ocaml-modules/owl-base/default.nix b/pkgs/development/ocaml-modules/owl-base/default.nix
index 189359cd1c863..32eef11936502 100644
--- a/pkgs/development/ocaml-modules/owl-base/default.nix
+++ b/pkgs/development/ocaml-modules/owl-base/default.nix
@@ -4,14 +4,14 @@ buildDunePackage rec {
   pname = "owl-base";
   version = "1.0.2";
 
-  useDune2 = true;
+  duneVersion = "3";
 
   src = fetchurl {
     url = "https://github.com/owlbarn/owl/releases/download/${version}/owl-${version}.tbz";
-    sha256 = "sha256-ONIQzmwcLwljH9WZUUMOTzZLWuA2xx7RsyzlWbKikmM=";
+    hash = "sha256-ONIQzmwcLwljH9WZUUMOTzZLWuA2xx7RsyzlWbKikmM=";
   };
 
-  minimumOCamlVersion = "4.10";
+  minimalOCamlVersion = "4.10";
 
   meta = with lib; {
     description = "Numerical computing library for Ocaml";