2022-10-06 21:26:24 +00:00
|
|
|
{ lib, stdenv, fetchurl, SDL2, SDL2_image, libGLU, libGL, cmake, physfs, boost, zip, zlib, unzip, pkg-config }:
|
2020-12-31 07:48:55 +00:00
|
|
|
|
2012-04-17 13:06:12 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "blobby-volley";
|
2023-08-19 04:05:13 +00:00
|
|
|
version = "1.1.1";
|
2012-04-17 13:06:12 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-08-19 04:05:13 +00:00
|
|
|
url = "mirror://sourceforge/blobby/Blobby%20Volley%202%20%28Linux%29/1.1.1/blobby2-linux-1.1.1.tar.gz";
|
|
|
|
sha256 = "sha256-NX7lE+adO1D2f8Bj1Ky3lZpf6Il3gX8KqxTMxw2yFLo=";
|
2012-04-17 13:06:12 +00:00
|
|
|
};
|
|
|
|
|
2020-12-31 07:48:55 +00:00
|
|
|
nativeBuildInputs = [ cmake pkg-config zip ];
|
|
|
|
buildInputs = [ SDL2 SDL2_image libGLU libGL physfs boost zlib ];
|
2012-04-17 13:06:12 +00:00
|
|
|
|
2014-07-01 07:04:36 +00:00
|
|
|
preConfigure=''
|
|
|
|
sed -e '1i#include <iostream>' -i src/NetworkMessage.cpp
|
2012-04-17 13:06:12 +00:00
|
|
|
'';
|
|
|
|
|
2022-10-06 21:26:24 +00:00
|
|
|
inherit unzip;
|
|
|
|
|
2016-10-31 17:36:53 +00:00
|
|
|
postInstall = ''
|
|
|
|
cp ../data/Icon.bmp "$out/share/blobby/"
|
|
|
|
mv "$out/bin"/blobby{,.bin}
|
|
|
|
substituteAll "${./blobby.sh}" "$out/bin/blobby"
|
|
|
|
chmod a+x "$out/bin/blobby"
|
|
|
|
'';
|
|
|
|
|
2021-01-15 04:31:39 +00:00
|
|
|
meta = with lib; {
|
2021-01-24 09:19:10 +00:00
|
|
|
description = "Blobby volleyball game";
|
2020-12-31 07:48:55 +00:00
|
|
|
license = licenses.bsd3;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ raskin ];
|
2022-10-06 21:26:24 +00:00
|
|
|
homepage = "https://blobbyvolley.de/";
|
2018-11-24 18:58:03 +00:00
|
|
|
downloadPage = "https://sourceforge.net/projects/blobby/files/Blobby%20Volley%202%20%28Linux%29/";
|
2022-10-06 21:26:24 +00:00
|
|
|
mainProgram = "blobby";
|
2012-04-17 13:06:12 +00:00
|
|
|
};
|
|
|
|
}
|