3
0
Fork 0
forked from mirrors/nixpkgs

phrasendrescher: init at 1.0

It's a cracking tool that finds passphrases of SSH keys.
This commit is contained in:
Bjørn Forsman 2016-11-22 17:33:12 +01:00
parent 7d5abdca11
commit 682bb54cc4
2 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,21 @@
{ stdenv, fetchurl, openssl }:
stdenv.mkDerivation rec {
name = "phrasendrescher-${version}";
version = "1.0";
src = fetchurl {
url = "http://leidecker.info/projects/phrasendrescher/${name}.tar.gz";
sha256 = "1r0j7ms3i324p6if9cg8i0q900zqfjpvfr8pwj181x8ascysbbf2";
};
buildInputs = [ openssl ];
meta = with stdenv.lib; {
description = "Cracking tool that finds passphrases of SSH keys";
homepage = "http://leidecker.info/projects/phrasendrescher.shtml";
license = licenses.gpl2Plus;
platforms = platforms.all;
maintainers = with maintainers; [ bjornfor ];
};
}

View file

@ -14169,6 +14169,8 @@ in
phototonic = qt5.callPackage ../applications/graphics/phototonic { };
phrasendrescher = callPackage ../tools/security/phrasendrescher { };
phwmon = callPackage ../applications/misc/phwmon { };
pianobar = callPackage ../applications/audio/pianobar { };