3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/ocaml-modules/ocaml-libvirt/default.nix

35 lines
945 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
buildFlags = [ "all" "opt" "CPPFLAGS=-Wno-error" ];
installTargets = "install-opt";
preInstall = ''
# Fix 'dllmllibvirt.so' install failure into non-existent directory.
mkdir -p $OCAMLFIND_DESTDIR/stublibs
'';
2017-02-04 15:07:45 +00:00
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 [];
};
}