summary refs log tree commit diff
path: root/pkgs/development/libraries/hivex/default.nix
blob: 4f0b3826022fb57313f51da7f5e9db730d84f678 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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;
  };
}