23b612e36f
GitOrigin-RevId: ae5c332cbb5827f6b1f02572496b141021de335f
36 lines
841 B
Nix
36 lines
841 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchzip
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "galleta";
|
|
version = "20040505_1";
|
|
|
|
src = fetchzip {
|
|
url = "mirror://sourceforge/project/odessa/Galleta/${finalAttrs.version}/galleta_${finalAttrs.version}.zip";
|
|
hash = "sha256-tc5XLToyQZutb51ZoBlGWXDpsSqdJ89bjzJwY8kRncA=";
|
|
};
|
|
|
|
makeFlags = [
|
|
"-C src"
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
mkdir -p $out/bin
|
|
cp bin/galleta $out/bin
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Examine the contents of the IE's cookie files for forensic purposes";
|
|
mainProgram = "galleta";
|
|
homepage = "https://sourceforge.net/projects/odessa/files/Galleta";
|
|
maintainers = with maintainers; [ d3vil0p3r ];
|
|
platforms = platforms.unix;
|
|
license = licenses.bsd3;
|
|
};
|
|
})
|