ocamlPackages.dune: rename into dune_1

This commit is contained in:
Vincent Laporte
2021-03-07 12:07:14 +01:00
committed by Vincent Laporte
parent 5dc759afec
commit 60785fe4db
5 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
{ lib, stdenv, ocaml, findlib, dune, dune_2 }:
{ lib, stdenv, ocaml, findlib, dune_1, dune_2 }:
{ pname, version, buildInputs ? [], enableParallelBuilding ? true, ... }@args:
let Dune = if args.useDune2 or false then dune_2 else dune; in
let Dune = if args.useDune2 or false then dune_2 else dune_1; in
if args ? minimumOCamlVersion &&
! lib.versionAtLeast ocaml.version args.minimumOCamlVersion