Add hivex, windows registry hive extraction library
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
{ stdenv, fetchurl, pkgconfig, automake, autoconf, libtool, makeWrapper
|
||||
, perl, libxml2, IOStringy }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "hivex-${version}";
|
||||
version = "1.3.11";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://libguestfs.org/download/hivex/${name}.tar.gz";
|
||||
sha256 = "0y3nqykwy58divxkv7gmsb067dasyfz3apbp437hl57rgrndyfn6";
|
||||
};
|
||||
|
||||
patches = [ ./hivex-syms.patch ];
|
||||
|
||||
buildInputs = [
|
||||
pkgconfig automake autoconf libtool makeWrapper
|
||||
perl libxml2 IOStringy
|
||||
];
|
||||
|
||||
preConfigure = ''
|
||||
AUTOPOINT=true autoreconf --verbose --install
|
||||
'';
|
||||
|
||||
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];
|
||||
platforms = with platforms; linux;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user