uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
51
pkgs/development/libraries/libvmi/default.nix
Normal file
51
pkgs/development/libraries/libvmi/default.nix
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
{ lib, stdenv,
|
||||
fetchFromGitHub,
|
||||
autoreconfHook,
|
||||
bison,
|
||||
flex,
|
||||
glib,
|
||||
pkg-config,
|
||||
json_c,
|
||||
xen,
|
||||
libvirt,
|
||||
xenSupport ? true }:
|
||||
|
||||
with lib;
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libvmi";
|
||||
version = "0.12.0";
|
||||
libVersion = "0.0.12";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "libvmi";
|
||||
repo = "libvmi";
|
||||
rev = "v${version}";
|
||||
sha256 = "0wbi2nasb1gbci6cq23g6kq7i10rwi1y7r44rl03icr5prqjpdyv";
|
||||
};
|
||||
|
||||
buildInputs = [ glib libvirt json_c ] ++ (optional xenSupport xen);
|
||||
nativeBuildInputs = [ autoreconfHook bison flex pkg-config ];
|
||||
|
||||
configureFlags = optional (!xenSupport) "--disable-xen";
|
||||
|
||||
# libvmi uses dlopen() for the xen libraries, however autoPatchelfHook doesn't work here
|
||||
postFixup = optionalString xenSupport ''
|
||||
libvmi="$out/lib/libvmi.so.${libVersion}"
|
||||
oldrpath=$(patchelf --print-rpath "$libvmi")
|
||||
patchelf --set-rpath "$oldrpath:${makeLibraryPath [ xen ]}" "$libvmi"
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://libvmi.com/";
|
||||
description = "A C library for virtual machine introspection";
|
||||
longDescription = ''
|
||||
LibVMI is a C library with Python bindings that makes it easy to monitor the low-level
|
||||
details of a running virtual machine by viewing its memory, trapping on hardware events,
|
||||
and accessing the vCPU registers.
|
||||
'';
|
||||
license = with licenses; [ gpl3 lgpl3 ];
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ matthiasbeyer ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue