forked from mirrors/nixpkgs
blobby: repair
This commit is contained in:
parent
9f6a1541c7
commit
b2996de2a7
|
@ -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 "$@"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ 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";
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue