summary refs log tree commit diff
path: root/pkgs/applications/virtualization/xen
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2018-08-28 05:09:44 +0000
committerVincent Laporte <Vincent.Laporte@gmail.com>2018-08-29 12:49:35 +0000
commit8a23558db1ec96452eed6bd78813bd7084a68ee7 (patch)
tree270347afab0ee0a2015bda40913918188d99f4bb /pkgs/applications/virtualization/xen
parent5670f77a90650d7a224d12e89144741f696b1fb7 (diff)
downloadnixpkgs-8a23558db1ec96452eed6bd78813bd7084a68ee7.tar
nixpkgs-8a23558db1ec96452eed6bd78813bd7084a68ee7.tar.gz
nixpkgs-8a23558db1ec96452eed6bd78813bd7084a68ee7.tar.bz2
nixpkgs-8a23558db1ec96452eed6bd78813bd7084a68ee7.tar.lz
nixpkgs-8a23558db1ec96452eed6bd78813bd7084a68ee7.tar.xz
nixpkgs-8a23558db1ec96452eed6bd78813bd7084a68ee7.tar.zst
nixpkgs-8a23558db1ec96452eed6bd78813bd7084a68ee7.zip
xen_4_10: use OCaml 4.05
Diffstat (limited to 'pkgs/applications/virtualization/xen')
-rw-r--r--pkgs/applications/virtualization/xen/4.10.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/applications/virtualization/xen/4.10.nix b/pkgs/applications/virtualization/xen/4.10.nix
index 5e21f7ee608..f3055fc79c3 100644
--- a/pkgs/applications/virtualization/xen/4.10.nix
+++ b/pkgs/applications/virtualization/xen/4.10.nix
@@ -1,4 +1,5 @@
 { stdenv, callPackage, fetchurl, fetchpatch, fetchgit
+, ocaml-ng
 , withInternalQemu ? true
 , withInternalTraditionalQemu ? true
 , withInternalSeabios ? true
@@ -177,4 +178,4 @@ callPackage (import ./generic.nix (rec {
       else throw "this xen has no qemu builtin";
   };
 
-})) args
+})) ({ ocamlPackages = ocaml-ng.ocamlPackages_4_05; } // args)