mac-robber: init at 1.02
This commit is contained in:
parent
5d874ac468
commit
f5ffe147c8
43
pkgs/by-name/ma/mac-robber/package.nix
Normal file
43
pkgs/by-name/ma/mac-robber/package.nix
Normal 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;
|
||||
};
|
||||
})
|
Loading…
Reference in New Issue
Block a user