bruteforce-luks: clean up meta and fetch

This commit is contained in:
Noa Aarts
2024-11-07 18:41:37 +01:00
parent 7979a96a21
commit 9fac7d8abe
@@ -11,10 +11,10 @@ stdenv.mkDerivation rec {
version = "1.4.1";
src = fetchFromGitHub {
sha256 = "sha256-t07YyfCjaXQs/OMekcPNBT8DeSRtq2+8tUpsPP2pG7o=";
rev = version;
repo = "bruteforce-luks";
owner = "glv2";
repo = "bruteforce-luks";
rev = version;
hash = "sha256-t07YyfCjaXQs/OMekcPNBT8DeSRtq2+8tUpsPP2pG7o=";
};
nativeBuildInputs = [ autoreconfHook ];
@@ -24,8 +24,8 @@ stdenv.mkDerivation rec {
doCheck = true;
meta = with lib; {
inherit (src.meta) homepage;
meta = {
homepage = "https://github.com/glv2/bruteforce-luks";
description = "Cracks passwords of LUKS encrypted volumes";
mainProgram = "bruteforce-luks";
longDescription = ''
@@ -36,7 +36,7 @@ stdenv.mkDerivation rec {
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;
license = lib.licenses.gpl3Plus;
platforms = lib.platforms.linux;
};
}