bruteforce-salted-openssl: init at 1.4.2
Update package.nix Co-Authored-By: Fabian Affolter <mail@fabian-affolter.ch>
This commit is contained in:
parent
401d16acd0
commit
32b6b2eb78
1 changed files with 38 additions and 0 deletions
38
pkgs/by-name/br/bruteforce-salted-openssl/package.nix
Normal file
38
pkgs/by-name/br/bruteforce-salted-openssl/package.nix
Normal file
|
@ -0,0 +1,38 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, autoreconfHook
|
||||
, openssl
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "bruteforce-salted-openssl";
|
||||
version = "1.4.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "glv2";
|
||||
repo = "bruteforce-salted-openssl";
|
||||
rev = version;
|
||||
hash = "sha256-ICxXdKjRP2vXdJpjn0PP0/6rw9LKju0nVOSj47TyrzY=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
autoreconfHook
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
openssl
|
||||
];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Try to find the password of file encrypted with OpenSSL";
|
||||
homepage = "https://github.com/glv2/bruteforce-salted-openssl";
|
||||
changelog = "https://github.com/glv2/bruteforce-salted-openssl/blob/${src.rev}/NEWS";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ octodi ];
|
||||
mainProgram = "bruteforce-salted-openssl";
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue