ocamlPackages.ocp-build: pin cmdliner to 1.0

This commit is contained in:
Vincent Laporte 2022-08-25 18:53:50 +02:00 committed by Vincent Laporte
parent 155a919233
commit 6260b4f428

View file

@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, fetchpatch, ocaml, findlib, ncurses, cmdliner, re }:
{ lib, stdenv, fetchFromGitHub, fetchpatch, ocaml, findlib, ncurses, cmdliner_1_0, re }:
stdenv.mkDerivation rec {
pname = "ocaml${ocaml.version}-ocp-build";
@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
})
];
buildInputs = [ ocaml findlib cmdliner re ];
buildInputs = [ ocaml findlib cmdliner_1_0 re ];
propagatedBuildInputs = [ ncurses ];
preInstall = "mkdir -p $out/bin";