Unverified Commit 9fac7d8a authored by Noa Aarts's avatar Noa Aarts
Browse files

bruteforce-luks: clean up meta and fetch

parent 7979a96a
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -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;
  };
}