aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/ocaml-modules/owl-base
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2020-03-15 18:14:11 +0100
committerVincent Laporte <vbgl@users.noreply.github.com>2020-03-23 09:12:50 +0100
commit0229936bbe241f4686747d22919af0aac0dbb078 (patch)
tree2d04ed3b917cb32656867779433ae84537c4e743 /pkgs/development/ocaml-modules/owl-base
parent3c4c703368637f6440f554c97357d2a265d72d90 (diff)
buildDunePackage: add a “useDune2” option
Diffstat (limited to 'pkgs/development/ocaml-modules/owl-base')
-rw-r--r--pkgs/development/ocaml-modules/owl-base/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/ocaml-modules/owl-base/default.nix b/pkgs/development/ocaml-modules/owl-base/default.nix
index ce6ee124466c..9d2bf74a3ace 100644
--- a/pkgs/development/ocaml-modules/owl-base/default.nix
+++ b/pkgs/development/ocaml-modules/owl-base/default.nix
@@ -1,9 +1,11 @@
-{ stdenv, buildDune2Package, fetchFromGitHub, stdlib-shims }:
+{ stdenv, buildDunePackage, fetchFromGitHub, stdlib-shims }:
-buildDune2Package rec {
+buildDunePackage rec {
pname = "owl-base";
version = "0.8.0";
+ useDune2 = true;
+
src = fetchFromGitHub {
owner = "owlbarn";
repo = "owl";