unvanquished: 0.52.0 -> 0.52.1 (#127771)

authored by

necessarily-equal and committed by
GitHub
f5bba23a 6556d64f

+6 -6
+6 -6
pkgs/games/unvanquished/default.nix
··· 6 }: 7 8 let 9 - version = "0.52.0"; 10 binary-deps-version = "5"; 11 12 src = fetchFromGitHub { ··· 14 repo = "Unvanquished"; 15 rev = "v${version}"; 16 fetchSubmodules = true; 17 - sha256 = "1acda1559q6zwmhg3x00nai88hy83i5hcfli2bqfab7slr95lm27"; 18 }; 19 20 unvanquished-binary-deps = stdenv.mkDerivation rec { ··· 77 chmod +x $out/bin/${wrappername} 78 ''; 79 80 - 81 unvanquished-assets = stdenv.mkDerivation { 82 pname = "unvanquished-assets"; 83 inherit version src; 84 85 - outputHash = "sha256:1fy85cjnjk9rrqkhgx5701inff2yv14hnxglzx3209c553gn31n7"; 86 outputHashMode = "recursive"; 87 nativeBuildInputs = [ aria2 cacert ]; 88 - buildCommand = "bash $src/download-paks $out"; 89 }; 90 91 # this really is the daemon game engine, the game itself is in the assets ··· 186 # don't replace the following lib.licenses.zlib with just "zlib", 187 # or you would end up with the package instead 188 license = with lib.licenses; [ 189 - mit gpl3Only lib.licenses.zlib cc-by-sa-25 190 ]; 191 }; 192 }
··· 6 }: 7 8 let 9 + version = "0.52.1"; 10 binary-deps-version = "5"; 11 12 src = fetchFromGitHub { ··· 14 repo = "Unvanquished"; 15 rev = "v${version}"; 16 fetchSubmodules = true; 17 + sha256 = "1fiqn9f6nsh4cfjy7gfsv950hphwi9ca0ddgsjvn77g7yc0arp6c"; 18 }; 19 20 unvanquished-binary-deps = stdenv.mkDerivation rec { ··· 77 chmod +x $out/bin/${wrappername} 78 ''; 79 80 unvanquished-assets = stdenv.mkDerivation { 81 pname = "unvanquished-assets"; 82 inherit version src; 83 84 + outputHash = "sha256:084jdisb48xyk9agjifn0nlnsdnjgg32si8zd1khsywd0kffplzx"; 85 outputHashMode = "recursive"; 86 nativeBuildInputs = [ aria2 cacert ]; 87 + buildCommand = "bash $src/download-paks --cache=$(pwd) --version=${version} $out"; 88 }; 89 90 # this really is the daemon game engine, the game itself is in the assets ··· 185 # don't replace the following lib.licenses.zlib with just "zlib", 186 # or you would end up with the package instead 187 license = with lib.licenses; [ 188 + mit gpl3Plus lib.licenses.zlib bsd3 # engine 189 + cc-by-sa-25 cc-by-sa-30 cc-by-30 cc-by-sa-40 cc0 # assets 190 ]; 191 }; 192 }