2016-01-18 00:04:40 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, autoreconfHook, makeWrapper
|
2018-12-15 04:50:31 +01:00
|
|
|
, perlPackages, libxml2 }:
|
2014-11-06 11:29:02 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "hivex-${version}";
|
2019-02-03 13:18:58 +01:00
|
|
|
version = "1.3.18";
|
2014-11-06 11:29:02 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://libguestfs.org/download/hivex/${name}.tar.gz";
|
2019-02-03 13:18:58 +01:00
|
|
|
sha256 = "0ibl186l6rd9qj4rqccfwbg1nnx6z07vspkhk656x6zav67ph7la";
|
2014-11-06 11:29:02 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
patches = [ ./hivex-syms.patch ];
|
|
|
|
|
2017-09-14 21:24:37 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2014-11-06 11:29:02 +01:00
|
|
|
buildInputs = [
|
2018-12-15 04:50:31 +01:00
|
|
|
autoreconfHook makeWrapper libxml2
|
|
|
|
] ++ (with perlPackages; [ perl IOStringy ]);
|
2014-11-06 11:29:02 +01:00
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
for bin in $out/bin/*; do
|
|
|
|
wrapProgram "$bin" --prefix "PATH" : "$out/bin"
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Windows registry hive extraction library";
|
|
|
|
license = licenses.lgpl2;
|
|
|
|
homepage = https://github.com/libguestfs/hivex;
|
|
|
|
maintainers = with maintainers; [offline];
|
2015-11-17 21:29:29 +01:00
|
|
|
platforms = platforms.linux;
|
2014-11-06 11:29:02 +01:00
|
|
|
};
|
|
|
|
}
|