summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/ocaml-libvirt/default.nix
blob: 026aeb220e56a9c06d1ddbade6cc25606272788e (plain) (blame)
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
{ stdenv, fetchgit, libvirt, autoconf, ocaml, findlib }:

stdenv.mkDerivation rec {
  pname = "ocaml-libvirt";
  rev = "bab7f84ade84ceaddb08b6948792d49b3d04b897";
  version = "0.6.1.4.2017-11-08-unstable"; # libguestfs-1.34+ needs ocaml-libvirt newer than the latest release 0.6.1.4

  src = fetchgit {
    url = "git://git.annexia.org/git/ocaml-libvirt.git";
    rev = rev;
    sha256 = "0vxgx1n58fp4qmly6i5zxiacr7303127d6j78a295xin1p3a8xcw";
  };

  propagatedBuildInputs = [ libvirt ];

  nativeBuildInputs = [ autoconf findlib ];

  buildInputs = [ ocaml ];

  createFindlibDestdir = true;

  preConfigure = ''
    autoconf
  '';

  buildPhase = "make all opt CPPFLAGS=-Wno-error";

  installPhase = "make install-opt";

  meta = with stdenv.lib; {
    description = "OCaml bindings for libvirt";
    homepage = "https://libvirt.org/ocaml/";
    license = licenses.gpl2;
    maintainers = [ maintainers.volth ];
    platforms = ocaml.meta.platforms or [];
  };
}