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 8747b2a
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions pkgs/by-name/zi/zip2hashcat/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
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 = ''
$CC zip2hashcat.c -o zip2hashcat
'';

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

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 ];
};
}

0 comments on commit 8747b2a

Please sign in to comment.