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