nixpkgs/pkgs/tools/security/bruteforce-luks/default.nix
R. RyanTM 6bb054cd62 bruteforce-luks: 1.3.1 -> 1.3.2
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/bruteforce-luks/versions
2019-06-01 00:56:49 -07:00

36 lines
1.1 KiB
Nix

{ stdenv, fetchFromGitHub, autoreconfHook, cryptsetup }:
stdenv.mkDerivation rec {
name = "bruteforce-luks-${version}";
version = "1.3.2";
src = fetchFromGitHub {
sha256 = "0ws5bm5pczhvqrlhl60h8a9rdwk6xlh9wr5ndnkyxvv7m90qpy9b";
rev = version;
repo = "bruteforce-luks";
owner = "glv2";
};
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ cryptsetup ];
enableParallelBuilding = true;
doCheck = true;
meta = with stdenv.lib; {
inherit (src.meta) homepage;
description = "Cracks passwords of LUKS encrypted volumes";
longDescription = ''
The program tries to decrypt at least one of the key slots by trying
all the possible passwords. It is especially useful if you know
something about the password (i.e. you forgot a part of your password but
still remember most of it). Finding the password of a volume without
knowing anything about it would take way too much time (unless the
password is really short and/or weak). It can also use a dictionary.
'';
license = licenses.gpl3Plus;
platforms = platforms.linux;
};
}