about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorVolth <volth@webmaster.ms>2017-03-31 02:19:02 +0000
committerVolth <volth@webmaster.ms>2017-04-13 15:55:20 +0000
commit94753af68ce76e0a8991d711ad54c927b6f891ed (patch)
tree576576cb61640712fbf68bf1993d7764ea174e0c /pkgs/development/ocaml-modules
parentcf68f546b1d5648c1d83f33e265c019c9f971c10 (diff)
downloadnixlib-94753af68ce76e0a8991d711ad54c927b6f891ed.tar
nixlib-94753af68ce76e0a8991d711ad54c927b6f891ed.tar.gz
nixlib-94753af68ce76e0a8991d711ad54c927b6f891ed.tar.bz2
nixlib-94753af68ce76e0a8991d711ad54c927b6f891ed.tar.lz
nixlib-94753af68ce76e0a8991d711ad54c927b6f891ed.tar.xz
nixlib-94753af68ce76e0a8991d711ad54c927b6f891ed.tar.zst
nixlib-94753af68ce76e0a8991d711ad54c927b6f891ed.zip
libguestfs: 1.34.4 -> 1.34.6
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/ocaml-libvirt/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/ocaml-modules/ocaml-libvirt/default.nix b/pkgs/development/ocaml-modules/ocaml-libvirt/default.nix
index 01b761e4e4ad..0ad5d09d687c 100644
--- a/pkgs/development/ocaml-modules/ocaml-libvirt/default.nix
+++ b/pkgs/development/ocaml-modules/ocaml-libvirt/default.nix
@@ -2,12 +2,13 @@
 
 stdenv.mkDerivation rec {
   name = "ocaml-libvirt-${version}";
-  version = "0.6.1.5"; # FIXME: libguestfs depends on not yet released 0.6.1.5, so the latest post-0.6.1.4 master from git is used
+  rev = "3169af3";
+  version = "0.6.1.4-rev.${rev}"; # libguestfs-1.34 needs ocaml-libvirt newer than the latest release 0.6.1.4
 
   src = fetchgit {
     url = "git://git.annexia.org/git/ocaml-libvirt.git";
-    rev = "8853f5a49587f00a7d2a5c8c7e52480a16bbdb02";
-    sha256 = "1lnsvyb6dll58blacc629nz1lzc20p7ayqn9pag1rrx5i54q9v24";
+    rev = rev;
+    sha256 = "0z8p6q6k42rdrvy248siq922m1yszny1hfklf6djynvk2viyqdbg";
   };
 
   propagatedBuildInputs = [ libvirt ];
@@ -19,7 +20,6 @@ stdenv.mkDerivation rec {
   createFindlibDestdir = true;
 
   preConfigure = ''
-    substituteInPlace configure.ac --replace 0.6.1.4 0.6.1.5
     autoconf
   '';