libvmi: -> 0.12

This commit is contained in:
Leon Schuermann 2018-06-27 23:24:47 +01:00
parent fc3073c06b
commit 80a2a584fe

View File

@ -1,20 +1,33 @@
{ stdenv, xen, which, autoreconfHook, fetchFromGitHub, yacc, bison, flex, glib, libtool, autoconf, automake, pkgconfig, libvirt }: { stdenv,
fetchFromGitHub,
which,
autoreconfHook,
autoconf,
automake,
libtool,
yacc,
bison,
flex,
glib,
pkgconfig,
json_c,
xen,
libvirt }:
with stdenv.lib; with stdenv.lib;
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "libvmi-${version}"; name = "libvmi-${version}";
version = "${stdenv.lib.strings.substring 0 7 rev}-2017-05-27"; version = "0.12";
rev = "3e4114a64f012f1d3e2eb660bc65dcd130295d49";
src = fetchFromGitHub { src = fetchFromGitHub {
inherit rev;
owner = "libvmi"; owner = "libvmi";
repo = "libvmi"; repo = "libvmi";
sha256 = "0vbmrj0ij19i55afkqj64q7sgh0scpwk3c99qx6p6gn1qcy2wdss"; rev = "6934e8a4758018983ec53ec791dd14a7d6ac31a9";
sha256 = "0wbi2nasb1gbci6cq23g6kq7i10rwi1y7r44rl03icr5prqjpdyv";
}; };
buildInputs = [ glib xen which libvirt ]; buildInputs = [ glib which libvirt json_c xen ];
nativeBuildInputs = [ autoreconfHook yacc bison flex libtool autoconf automake pkgconfig ]; nativeBuildInputs = [ autoreconfHook yacc bison flex libtool autoconf automake pkgconfig ];
meta = with stdenv.lib; { meta = with stdenv.lib; {