Merge pull request #278373 from D3vil0p3r/patch-7
This commit is contained in:
commit
08e04cadfc
55
pkgs/by-name/re/regripper/package.nix
Normal file
55
pkgs/by-name/re/regripper/package.nix
Normal file
@ -0,0 +1,55 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, perl
|
||||
, perlPackages
|
||||
, runtimeShell
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "regripper";
|
||||
version = "unstable-2023-07-23";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "keydet89";
|
||||
repo = "RegRipper3.0";
|
||||
rev = "cee174fb6f137b14c426e97d17945ddee0d31051";
|
||||
hash = "sha256-vejIRlcVjxQJpxJabJJcljODYr+lLJjYINVtAPObvkQ=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ perl perlPackages.ParseWin32Registry ];
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace rip.pl rr.pl \
|
||||
--replace \"plugins/\" \"$out/share/regripper/plugins/\" \
|
||||
--replace \"plugins\" \"$out/share/regripper/plugins\"
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
mkdir -p $out/{bin,share}
|
||||
|
||||
rm -r *.md *.exe *.bat *.dll
|
||||
|
||||
cp -aR . "$out/share/regripper/"
|
||||
|
||||
cat > "$out/bin/${pname}" << EOF
|
||||
#!${runtimeShell}
|
||||
exec ${perl}/bin/perl $out/share/regripper/rip.pl "\$@"
|
||||
EOF
|
||||
|
||||
chmod u+x "$out/bin/${pname}"
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Open source forensic software used as a Windows Registry data extraction command line";
|
||||
mainProgram = "regripper";
|
||||
homepage = "https://github.com/keydet89/RegRipper3.0";
|
||||
maintainers = with maintainers; [ d3vil0p3r ];
|
||||
platforms = platforms.unix;
|
||||
license = licenses.mit;
|
||||
};
|
||||
}
|
@ -19983,6 +19983,19 @@ with self; {
|
||||
};
|
||||
};
|
||||
|
||||
ParseWin32Registry = buildPerlPackage {
|
||||
pname = "ParseWin32Registry";
|
||||
version = "1.1";
|
||||
src = fetchurl {
|
||||
url = "mirror://cpan/authors/id/J/JM/JMACFARLA/Parse-Win32Registry-1.1.tar.gz";
|
||||
hash = "sha256-wWOyAr5q17WPSEZJT/crjJqXloPKmU5DgOmsZWTcBbo=";
|
||||
};
|
||||
meta = with lib; {
|
||||
description = "Module for parsing Windows Registry files";
|
||||
license = with licenses; [ artistic1 gpl1Only ];
|
||||
};
|
||||
};
|
||||
|
||||
ParseEDID = buildPerlPackage {
|
||||
pname = "Parse-Edid";
|
||||
version = "1.0.7";
|
||||
|
Loading…
Reference in New Issue
Block a user