nixpkgs/pkgs/development/tools/ocaml/findlib/default.nix

69 lines
2.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, fetchpatch, m4, ncurses, ocaml, writeText }:
2016-02-01 07:59:13 +00:00
stdenv.mkDerivation rec {
pname = "ocaml-findlib";
2021-03-18 18:58:17 +00:00
version = "1.9.1";
src = fetchurl {
2016-02-01 07:59:13 +00:00
url = "http://download.camlcity.org/download/findlib-${version}.tar.gz";
2021-03-18 18:58:17 +00:00
sha256 = "sha256-K0K4vVRIjWTEvzy3BUtLN70wwdwSvUMeoeTXrYqYD+I=";
};
nativeBuildInputs = [m4 ocaml];
buildInputs = [ ncurses ];
patches = [ ./ldconf.patch ./install_topfind.patch ];
dontAddPrefix=true;
dontAddStaticConfigureFlags = true;
configurePlatforms = [];
2021-08-14 13:00:00 +01:00
configureFlags = [
"-bindir" "${placeholder "out"}/bin"
"-mandir" "${placeholder "out"}/share/man"
"-sitelib" "${placeholder "out"}/lib/ocaml/${ocaml.version}/site-lib"
"-config" "${placeholder "out"}/etc/findlib.conf"
];
buildFlags = [ "all" "opt" ];
setupHook = writeText "setupHook.sh" ''
addOCamlPath () {
2016-10-05 08:32:30 +01:00
if test -d "''$1/lib/ocaml/${ocaml.version}/site-lib"; then
export OCAMLPATH="''${OCAMLPATH-}''${OCAMLPATH:+:}''$1/lib/ocaml/${ocaml.version}/site-lib/"
fi
2018-05-29 06:28:04 +01:00
if test -d "''$1/lib/ocaml/${ocaml.version}/site-lib/stublibs"; then
export CAML_LD_LIBRARY_PATH="''${CAML_LD_LIBRARY_PATH-}''${CAML_LD_LIBRARY_PATH:+:}''$1/lib/ocaml/${ocaml.version}/site-lib/stublibs"
fi
}
exportOcamlDestDir () {
2016-10-05 08:32:30 +01:00
export OCAMLFIND_DESTDIR="''$out/lib/ocaml/${ocaml.version}/site-lib/"
}
createOcamlDestDir () {
if test -n "''${createFindlibDestdir-}"; then
mkdir -p $OCAMLFIND_DESTDIR
fi
}
2014-07-08 13:20:05 +01:00
# run for every buildInput
addEnvHooks "$targetOffset" addOCamlPath
# run before installPhase, even without buildInputs, and not in nix-shell
preInstallHooks+=(createOcamlDestDir)
# run even in nix-shell, and even without buildInputs
addEnvHooks "$hostOffset" exportOcamlDestDir
'';
meta = {
homepage = "http://projects.camlcity.org/projects/findlib.html";
description = "O'Caml library manager";
license = lib.licenses.mit;
platforms = ocaml.meta.platforms or [];
maintainers = [
lib.maintainers.maggesi
lib.maintainers.vbmithr
];
};
}
2016-02-01 07:59:13 +00:00