Hello.

I want to install the latest LLVM bindings (3.9.0) for the OCaml
programming language (4.0.3) on my NixOS unstable system.

Currently I have the following on my system configuration:

  nixpkgs.config.packageOverrides = pkgs: rec {
    # ...
    ocamlPackages = pkgs.ocamlPackages_latest;    # 4.0.3 currently
    llvmPackages = pkgs.llvmPackages_39;          # latest
  };

  environment.systemPackages = with pkgs; [
    # ...
    llvmPackages.llvm
    ocamlPackages.llvm
  };

This gives me ocaml-llvm-3.7.1.

How can get ocaml-llvm-3.9.0?

Romildo
_______________________________________________
nix-dev mailing list
nix-dev@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-dev

Reply via email to