nixpkgs/pkgs/development/ocaml-modules/ocaml-libvirt/default.nix

34 lines
840 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitLab, libvirt, autoreconfHook, pkg-config, ocaml, findlib, perl }:
2017-02-04 15:07:45 +00:00
stdenv.mkDerivation rec {
pname = "ocaml-libvirt";
version = "0.6.1.5";
2017-02-04 15:07:45 +00:00
src = fetchFromGitLab {
owner = "libvirt";
repo = "libvirt-ocaml";
rev = "v${version}";
sha256 = "0xpkdmknk74yqxgw8z2w8b7ss8hpx92xnab5fsqg2byyj55gzf2k";
2017-02-04 15:07:45 +00:00
};
propagatedBuildInputs = [ libvirt ];
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;
buildPhase = "make all opt CPPFLAGS=-Wno-error";
2017-02-04 15:07:45 +00:00
installPhase = "make install-opt";
meta = with lib; {
2017-02-04 15:07:45 +00:00
description = "OCaml bindings for libvirt";
homepage = "https://libvirt.org/ocaml/";
2017-02-04 15:07:45 +00:00
license = licenses.gpl2;
maintainers = [ maintainers.volth ];
platforms = ocaml.meta.platforms or [];
};
}