mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 22:32:58 +03:00
phrasendrescher: 1.0 -> 1.2.2c (#46215)
* phrasendrescher: 1.0 -> 1.2.2b Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from phrasendrescher * phrasendrescher: 1.2.2b -> 1.2.2c and refactor
This commit is contained in:
parent
7a47ebd84c
commit
b5e4b3879c
@ -1,19 +1,26 @@
|
||||
{ stdenv, fetchurl, openssl }:
|
||||
{ stdenv, fetchurl, openssl, libssh2, gpgme }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "phrasendrescher-${version}";
|
||||
version = "1.0";
|
||||
pname = "phrasendrescher";
|
||||
version = "1.2.2c";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://leidecker.info/projects/phrasendrescher/${name}.tar.gz";
|
||||
sha256 = "1r0j7ms3i324p6if9cg8i0q900zqfjpvfr8pwj181x8ascysbbf2";
|
||||
url = "http://leidecker.info/projects/${pname}/${pname}-${version}.tar.gz";
|
||||
sha256 = "18vg6h294219v14x5zqm8ddmq5amxlbz7pw81lcmpz8v678kwyph";
|
||||
};
|
||||
|
||||
buildInputs = [ openssl ];
|
||||
postPatch = ''
|
||||
substituteInPlace configure \
|
||||
--replace 'SSL_LIB="ssl"' 'SSL_LIB="crypto"'
|
||||
'';
|
||||
|
||||
buildInputs = [ openssl libssh2 gpgme ];
|
||||
|
||||
configureFlags = "--with-plugins";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Cracking tool that finds passphrases of SSH keys";
|
||||
homepage = http://leidecker.info/projects/phrasendrescher.shtml;
|
||||
description = "A modular and multi processing pass phrase cracking tool";
|
||||
homepage = "http://leidecker.info/projects/phrasendrescher/index.shtml";
|
||||
license = licenses.gpl2Plus;
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ bjornfor ];
|
||||
|
Loading…
Reference in New Issue
Block a user