2020-11-02 20:58:09 +00:00
|
|
|
{ stdenv, fetchFromGitLab, libvirt, autoreconfHook, pkg-config, ocaml, findlib, perl }:
|
2017-02-04 15:07:45 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "ocaml-libvirt";
|
2020-11-02 20:58:09 +00:00
|
|
|
version = "0.6.1.5";
|
2017-02-04 15:07:45 +00:00
|
|
|
|
2020-11-02 20:58:09 +00:00
|
|
|
src = fetchFromGitLab {
|
|
|
|
owner = "libvirt";
|
|
|
|
repo = "libvirt-ocaml";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "0xpkdmknk74yqxgw8z2w8b7ss8hpx92xnab5fsqg2byyj55gzf2k";
|
2017-02-04 15:07:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ libvirt ];
|
|
|
|
|
2020-11-02 20:58:09 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config findlib perl ];
|
2017-02-22 06:01:09 +00:00
|
|
|
|
|
|
|
buildInputs = [ ocaml ];
|
2017-02-04 15:07:45 +00:00
|
|
|
|
|
|
|
createFindlibDestdir = true;
|
|
|
|
|
2020-03-28 13:05:25 +00:00
|
|
|
buildPhase = "make all opt CPPFLAGS=-Wno-error";
|
2017-02-04 15:07:45 +00:00
|
|
|
|
|
|
|
installPhase = "make install-opt";
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "OCaml bindings for libvirt";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://libvirt.org/ocaml/";
|
2017-02-04 15:07:45 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = [ maintainers.volth ];
|
|
|
|
platforms = ocaml.meta.platforms or [];
|
|
|
|
};
|
|
|
|
}
|