Unverified Commit bdd51d78 authored by Aleksana's avatar Aleksana Committed by GitHub
Browse files

john: fix hash mismatch on source (#446519)

parents 9530f817 699cb82f
Loading
Loading
Loading
Loading
+8 −5
Original line number Diff line number Diff line
@@ -31,7 +31,7 @@ stdenv.mkDerivation {
    owner = "openwall";
    repo = "john";
    rev = "f9fedd238b0b1d69181c1fef033b85c787e96e57";
    hash = "sha256-zvoN+8Sx6qpVg2JeRLOIH1ehfl3tFTv7r5wQZ44Qsbc=";
    hash = "sha256-XMT5Sbp2XrAnfTHxXyJdw0kA/ZtfOiYrX/flCFLHJ6s=";
  };

  patches = lib.optionals withOpenCL [
@@ -130,15 +130,18 @@ stdenv.mkDerivation {
    done
  '';

  meta = with lib; {
  meta = {
    description = "John the Ripper password cracker";
    license = [ licenses.gpl2Plus ] ++ lib.optionals enableUnfree [ licenses.unfreeRedistributable ];
    license = [
      lib.licenses.gpl2Plus
    ]
    ++ lib.optionals enableUnfree [ lib.licenses.unfreeRedistributable ];
    homepage = "https://github.com/openwall/john/";
    maintainers = with maintainers; [
    maintainers = with lib.maintainers; [
      offline
      matthewbauer
      cherrykitten
    ];
    platforms = platforms.unix;
    platforms = lib.platforms.unix;
  };
}