Commit 3b3e37f9 authored by François Bobot's avatar François Bobot Committed by Vincent Laporte
Browse files

[OCaml] tell dune where to install man

`fixupPhase` move `$out/man` to `$out/share/man`. So the information of their location in the dune-project file is outdated which breaks dependencies on packages ( `(package foo)`).
parent ca295db2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -32,7 +32,7 @@ stdenv.mkDerivation ({
    runHook preInstall
    dune install --prefix $out --libdir $OCAMLFIND_DESTDIR ${pname} \
     ${if lib.versionAtLeast Dune.version "2.9"
       then "--docdir $out/share/doc"
       then "--docdir $out/share/doc --man $out/share/man"
       else ""}
    runHook postInstall
  '';