Merge pull request #278094 from D3vil0p3r/patch-4

galleta: init at 20040505_1
This commit is contained in:
Fabian Affolter 2024-01-14 10:58:17 +01:00 committed by GitHub
commit 68b6603c75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,36 @@
{ 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;
};
})