Merge pull request #203941 from nagy/blobby

blobby: repair

authored by

7c6f434c and committed by
GitHub
291315ce d2c12ae0

+6 -3
+1 -1
pkgs/games/blobby/blobby.sh
··· 7 7 ( cd ~/.blobby; for i in *.zip; do @unzip@/bin/unzip "$i"; done ) 8 8 } 9 9 10 - @out@/bin/blobby.bin 10 + exec @out@/bin/blobby.bin "$@"
+5 -2
pkgs/games/blobby/default.nix
··· 1 - { lib, stdenv, fetchurl, SDL2, SDL2_image, libGLU, libGL, cmake, physfs, boost, zip, zlib, pkg-config }: 1 + { lib, stdenv, fetchurl, SDL2, SDL2_image, libGLU, libGL, cmake, physfs, boost, zip, zlib, unzip, pkg-config }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "blobby-volley"; ··· 15 15 preConfigure='' 16 16 sed -e '1i#include <iostream>' -i src/NetworkMessage.cpp 17 17 ''; 18 + 19 + inherit unzip; 18 20 19 21 postInstall = '' 20 22 cp ../data/Icon.bmp "$out/share/blobby/" ··· 28 30 license = licenses.bsd3; 29 31 platforms = platforms.linux; 30 32 maintainers = with maintainers; [ raskin ]; 31 - homepage = "http://blobby.sourceforge.net/"; 33 + homepage = "https://blobbyvolley.de/"; 32 34 downloadPage = "https://sourceforge.net/projects/blobby/files/Blobby%20Volley%202%20%28Linux%29/"; 35 + mainProgram = "blobby"; 33 36 }; 34 37 }