Skip to content

Commit

Permalink
zip2hashcat: init at 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pyrox0 committed Oct 27, 2024
1 parent 485ad61 commit c387b01
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions pkgs/by-name/zi/zip2hashcat/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{
lib,
stdenv,
fetchFromGitHub,
...
}:

stdenv.mkDerivation rec {
pname = "zip2hashcat";
version = "1.0";

src = fetchFromGitHub {
owner = "hashstation";
repo = "zip2hashcat";
# Upstream 1.0 tag has no content
rev = "462bd94ea30d69a0810ca9bb3d056aa0f5393d57";
hash = "sha256-+hbDTGSDUxA7M8gBI/TViJ2ZvheNxlonYC/aFLvgPW8=";
};

buildPhase = ''
runHook preBuild
$CC zip2hashcat.c -o zip2hashcat
runHook postBuild
'';

installPhase = ''
runHook preInstall
mkdir -p $out/bin
mv zip2hashcat $out/bin/zip2hashcat
runHook postInstall
'';

meta = {
description = "Processes input ZIP files into a format suitable for use with hashcat";
homepage = "https://github.com/hashstation/zip2hashcat";
license = lib.licenses.mit;
changelog = "https://github.com/hashstation/zip2hashcat/releases/tag/${version}";
maintainers = with lib.maintainers; [ pyrox0 ];
mainProgram = "zip2hashcat";
platforms = lib.platforms.all;
};
}

0 comments on commit c387b01

Please sign in to comment.