Merge pull request #289532 from D3vil0p3r/patch-23

mac-robber: init at 1.02
This commit is contained in:
Emily Trau 2024-04-25 19:39:59 +10:00 committed by GitHub
commit 8e47ca284a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 43 additions and 0 deletions

View File

@ -0,0 +1,43 @@
{ lib
, stdenv
, fetchurl
}:
stdenv.mkDerivation (finalAttrs: {
pname = "mac-robber";
version = "1.02";
src = fetchurl {
url = "mirror://sourceforge/project/mac-robber/mac-robber/${finalAttrs.version}/mac-robber-${finalAttrs.version}.tar.gz";
hash = "sha256-WJXTMuyNh+FfIUQcYVRbf2iDCi7iyWfTgXc70IUEgG0=";
};
patches = [
# add GCC hardening.
(fetchurl {
name = "10_add-GCC-hardening.patch";
url = "https://salsa.debian.org/pkg-security-team/mac-robber/-/raw/b6a59d78e2f58fbfab7f1b3ed9b72531d28693ca/debian/patches/10_add-GCC-hardening.patch";
hash = "sha256-1ma6Vh1MTE6WlCcm2KzRLK/ZV3hAw7xP25yi7TrIqLI=";
})
];
makeFlags = [
"CC=${stdenv.cc.targetPrefix}cc"
"GCC_OPT="
];
installPhase = ''
runHook preInstall
install -D mac-robber $out/bin/mac-robber
runHook postInstall
'';
meta = with lib; {
description = "A digital investigation tool that collects data from allocated files in a mounted file system";
mainProgram = "mac-robber";
homepage = "https://www.sleuthkit.org/mac-robber/";
maintainers = with maintainers; [ d3vil0p3r ];
platforms = platforms.unix;
license = licenses.gpl2Only;
};
})