john: fix hash mismatch on source (#446519)

authored by Aleksana and committed by GitHub bdd51d78 9530f817

+8 -5
+8 -5
pkgs/by-name/jo/john/package.nix
··· 31 31 owner = "openwall"; 32 32 repo = "john"; 33 33 rev = "f9fedd238b0b1d69181c1fef033b85c787e96e57"; 34 - hash = "sha256-zvoN+8Sx6qpVg2JeRLOIH1ehfl3tFTv7r5wQZ44Qsbc="; 34 + hash = "sha256-XMT5Sbp2XrAnfTHxXyJdw0kA/ZtfOiYrX/flCFLHJ6s="; 35 35 }; 36 36 37 37 patches = lib.optionals withOpenCL [ ··· 130 130 done 131 131 ''; 132 132 133 - meta = with lib; { 133 + meta = { 134 134 description = "John the Ripper password cracker"; 135 - license = [ licenses.gpl2Plus ] ++ lib.optionals enableUnfree [ licenses.unfreeRedistributable ]; 135 + license = [ 136 + lib.licenses.gpl2Plus 137 + ] 138 + ++ lib.optionals enableUnfree [ lib.licenses.unfreeRedistributable ]; 136 139 homepage = "https://github.com/openwall/john/"; 137 - maintainers = with maintainers; [ 140 + maintainers = with lib.maintainers; [ 138 141 offline 139 142 matthewbauer 140 143 cherrykitten 141 144 ]; 142 - platforms = platforms.unix; 145 + platforms = lib.platforms.unix; 143 146 }; 144 147 }