summary refs log tree commit diff
path: root/pkgs/development/libraries/libguestfs
diff options
context:
space:
mode:
authorTeo Klestrup Röijezon <teo@nullable.se>2018-01-09 11:28:45 +0100
committerTeo Klestrup Röijezon <teo@nullable.se>2018-01-09 14:38:26 +0100
commite74f61f30d5b5c72b6bce01051e4aa77c8d73ec8 (patch)
tree0121c880cbf5fc63f3c353662f267c238e9d650e /pkgs/development/libraries/libguestfs
parent3ffb4137d9223db922c3ecc5e2aa0e2095db9f5f (diff)
downloadnixpkgs-e74f61f30d5b5c72b6bce01051e4aa77c8d73ec8.tar
nixpkgs-e74f61f30d5b5c72b6bce01051e4aa77c8d73ec8.tar.gz
nixpkgs-e74f61f30d5b5c72b6bce01051e4aa77c8d73ec8.tar.bz2
nixpkgs-e74f61f30d5b5c72b6bce01051e4aa77c8d73ec8.tar.lz
nixpkgs-e74f61f30d5b5c72b6bce01051e4aa77c8d73ec8.tar.xz
nixpkgs-e74f61f30d5b5c72b6bce01051e4aa77c8d73ec8.tar.zst
nixpkgs-e74f61f30d5b5c72b6bce01051e4aa77c8d73ec8.zip
libguestfs: Added JDK dependency
This is required with the current set of configure flags
Diffstat (limited to 'pkgs/development/libraries/libguestfs')
-rw-r--r--pkgs/development/libraries/libguestfs/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/libraries/libguestfs/default.nix b/pkgs/development/libraries/libguestfs/default.nix
index bfdd0cf8fd7..deb3dc9d06a 100644
--- a/pkgs/development/libraries/libguestfs/default.nix
+++ b/pkgs/development/libraries/libguestfs/default.nix
@@ -2,7 +2,7 @@
 , ncurses, cpio, gperf, perl, cdrkit, flex, bison, qemu, pcre, augeas, libxml2
 , acl, libcap, libcap_ng, libconfig, systemd, fuse, yajl, libvirt, hivex
 , gmp, readline, file, libintlperl, GetoptLong, SysVirt, numactl, xen, libapparmor
-, getopt, perlPackages, ocamlPackages }:
+, getopt, perlPackages, ocamlPackages, jdk }:
 
 stdenv.mkDerivation rec {
   name = "libguestfs-${version}";
@@ -24,6 +24,7 @@ stdenv.mkDerivation rec {
     cdrkit flex bison qemu pcre augeas libxml2 acl libcap libcap_ng libconfig
     systemd fuse yajl libvirt gmp readline file hivex libintlperl GetoptLong
     SysVirt numactl xen libapparmor getopt perlPackages.ModuleBuild
+    jdk
   ] ++ (with ocamlPackages; [ ocaml findlib ocamlbuild ocaml_libvirt ocaml_gettext ounit ]);
 
   prePatch = ''