4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
36 lines
1.1 KiB
Nix
36 lines
1.1 KiB
Nix
{ lib, stdenv, fetchFromGitHub, autoreconfHook, cryptsetup }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "bruteforce-luks";
|
|
version = "1.4.0";
|
|
|
|
src = fetchFromGitHub {
|
|
sha256 = "0yyrda077avdapq1mvavgv5mvj2r94d6p01q56bbnaq4a3h5kfd6";
|
|
rev = version;
|
|
repo = "bruteforce-luks";
|
|
owner = "glv2";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
buildInputs = [ cryptsetup ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
doCheck = true;
|
|
|
|
meta = with 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;
|
|
};
|
|
}
|