3
0
Fork 0
forked from mirrors/nixpkgs

ocamlPackages.findlib: fix buildInputs vs nativeBuildInputs

This commit is contained in:
Guillaume Girol 2021-08-14 12:00:00 +00:00
parent 2c35af2205
commit 4c0020beab

View file

@ -9,7 +9,8 @@ stdenv.mkDerivation rec {
sha256 = "sha256-K0K4vVRIjWTEvzy3BUtLN70wwdwSvUMeoeTXrYqYD+I=";
};
buildInputs = [m4 ncurses ocaml];
nativeBuildInputs = [m4 ocaml];
buildInputs = [ ncurses ];
patches = [ ./ldconf.patch ./install_topfind.patch ];