Unverified Commit 291315ce authored by 7c6f434c's avatar 7c6f434c Committed by GitHub
Browse files

Merge pull request #203941 from nagy/blobby

blobby: repair
parents d2c12ae0 b2996de2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -7,4 +7,4 @@ test -d ~/.blobby || {
  ( cd ~/.blobby; for i in *.zip; do @unzip@/bin/unzip "$i"; done )
}

@out@/bin/blobby.bin
exec @out@/bin/blobby.bin "$@"
+5 −2
Original line number Diff line number Diff line
{ lib, stdenv, fetchurl, SDL2, SDL2_image, libGLU, libGL, cmake, physfs, boost, zip, zlib, pkg-config }:
{ lib, stdenv, fetchurl, SDL2, SDL2_image, libGLU, libGL, cmake, physfs, boost, zip, zlib, unzip, pkg-config }:

stdenv.mkDerivation rec {
  pname = "blobby-volley";
@@ -16,6 +16,8 @@ stdenv.mkDerivation rec {
    sed -e '1i#include <iostream>' -i src/NetworkMessage.cpp
  '';

  inherit unzip;

  postInstall = ''
    cp ../data/Icon.bmp "$out/share/blobby/"
    mv "$out/bin"/blobby{,.bin}
@@ -28,7 +30,8 @@ stdenv.mkDerivation rec {
    license = licenses.bsd3;
    platforms = platforms.linux;
    maintainers = with maintainers; [ raskin ];
    homepage = "http://blobby.sourceforge.net/";
    homepage = "https://blobbyvolley.de/";
    downloadPage = "https://sourceforge.net/projects/blobby/files/Blobby%20Volley%202%20%28Linux%29/";
    mainProgram = "blobby";
  };
}