about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/hivex/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/hivex/default.nix')
-rw-r--r--nixpkgs/pkgs/development/libraries/hivex/default.nix38
1 files changed, 38 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/hivex/default.nix b/nixpkgs/pkgs/development/libraries/hivex/default.nix
new file mode 100644
index 000000000000..fb77e08ca6b0
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/hivex/default.nix
@@ -0,0 +1,38 @@
+{ lib, stdenv, fetchurl, pkg-config, autoreconfHook, makeWrapper
+, perlPackages, libxml2, libiconv }:
+
+stdenv.mkDerivation rec {
+  pname = "hivex";
+  version = "1.3.19";
+
+  src = fetchurl {
+    url = "https://libguestfs.org/download/hivex/${pname}-${version}.tar.gz";
+    sha256 = "0qppahpf7jq950nf8ial47h90nyqgnsffsj3zgdjjwkn958wq0ji";
+  };
+
+  patches = [ ./hivex-syms.patch ];
+
+  nativeBuildInputs = [ pkg-config ];
+  buildInputs = [
+    autoreconfHook makeWrapper libxml2
+  ]
+  ++ (with perlPackages; [ perl IOStringy ])
+  ++ lib.optionals stdenv.isDarwin [ libiconv ];
+
+  postInstall = ''
+    wrapProgram $out/bin/hivexregedit \
+        --set PERL5LIB "$out/${perlPackages.perl.libPrefix}" \
+        --prefix "PATH" : "$out/bin"
+
+    wrapProgram $out/bin/hivexml \
+        --prefix "PATH" : "$out/bin"
+  '';
+
+  meta = with lib; {
+    description = "Windows registry hive extraction library";
+    license = licenses.lgpl2;
+    homepage = "https://github.com/libguestfs/hivex";
+    maintainers = with maintainers; [offline];
+    platforms = platforms.linux ++ platforms.darwin;
+  };
+}