summaryrefslogtreecommitdiff
path: root/pkgs/development/tools/ocaml/findlib/default.nix
blob: 6864132d99c387c2f326e2657fe9d68cae4d2ec7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
  lib,
  stdenv,
  fetchurl,
  ncurses,
  ocaml,
  writeText,
}:

stdenv.mkDerivation rec {
  pname = "ocaml${ocaml.version}-findlib";
  version = "1.9.8";

  src = fetchurl {
    url = "https://download.camlcity.org/download/findlib-${version}.tar.gz";
    hash = "sha256-ZiyRD3dOn+46GcTgV/OAWBqy/E7lLaR2EwSsnDG4hp0=";
  };

  nativeBuildInputs = [ ocaml ];
  buildInputs = lib.optional (lib.versionOlder ocaml.version "4.07") ncurses;

  patches = [
    ./ldconf.patch
    ./install_topfind.patch
  ];

  dontAddPrefix = true;
  dontAddStaticConfigureFlags = true;
  configurePlatforms = [ ];

  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"
  ]
  ++ lib.optionals ocaml.nativeCompilers [
    "opt"
  ];

  setupHook = writeText "setupHook.sh" ''
    addOCamlPath () {
        if test -d "''$1/lib/ocaml/${ocaml.version}/site-lib"; then
            export OCAMLPATH="''${OCAMLPATH-}''${OCAMLPATH:+:}''$1/lib/ocaml/${ocaml.version}/site-lib/"
        fi
        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 () {
        export OCAMLFIND_DESTDIR="''$out/lib/ocaml/${ocaml.version}/site-lib/"
    }
    createOcamlDestDir () {
        if test -n "''${createFindlibDestdir-}"; then
          mkdir -p $OCAMLFIND_DESTDIR
        fi
    }
    detectOcamlConflicts () {
      local conflict
      conflict="$(ocamlfind list |& grep "has multiple definitions" || true)"
      if [[ -n "$conflict" ]]; then
        echo "Conflicting ocaml packages detected";
        echo "$conflict"
        echo "Set dontDetectOcamlConflicts to true to disable this check."
        exit 1
      fi
    }

    # 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
    # runs after all calls to addOCamlPath
    if [[ -z "''${dontDetectOcamlConflicts-}" ]]; then
      postHooks+=("detectOcamlConflicts")
    fi
  '';

  meta = {
    description = "O'Caml library manager";
    homepage = "http://projects.camlcity.org/projects/findlib.html";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [
      vbmithr
    ];
    mainProgram = "ocamlfind";
    platforms = ocaml.meta.platforms or [ ];
  };
}