julius: use SRI hash format

+11 -4
+11 -4
pkgs/games/julius/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, cmake, SDL2, SDL2_mixer, libpng }: 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , SDL2 5 + , SDL2_mixer 6 + , cmake 7 + , libpng 8 + }: 2 9 3 10 stdenv.mkDerivation rec { 4 11 pname = "julius"; ··· 8 15 owner = "bvschaik"; 9 16 repo = "julius"; 10 17 rev = "v${version}"; 11 - sha256 = "0w7kmgz9ya0ck9cxhsyralarg7y6ydx4plmh33r4mkxkamlr7493"; 18 + hash = "sha256-I5GTaVWzz0ryGLDSS3rzxp+XFVXZa9hZmgwon/6r83A="; 12 19 }; 13 20 14 21 nativeBuildInputs = [ cmake ]; 15 22 buildInputs = [ SDL2 SDL2_mixer libpng ]; 16 23 17 24 meta = with lib; { 25 + homepage = "https://github.com/bvschaik/julius"; 18 26 description = "An open source re-implementation of Caesar III"; 19 - homepage = "https://github.com/bvschaik/julius"; 20 27 license = licenses.agpl3; 28 + maintainers = with maintainers; [ Thra11 ]; 21 29 platforms = platforms.all; 22 30 broken = stdenv.isDarwin; 23 - maintainers = with maintainers; [ Thra11 ]; 24 31 }; 25 32 }