2021-01-15 04:31:39 +00:00
|
|
|
{ lib, stdenv, fetchurl, SDL2, SDL2_image, libGLU, libGL, cmake, physfs, boost, zip, zlib, pkg-config }:
|
2020-12-31 07:48:55 +00:00
|
|
|
|
2012-04-17 14:06:12 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "blobby-volley";
|
2020-12-31 07:48:55 +00:00
|
|
|
version = "1.0";
|
2012-04-17 14:06:12 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-11-24 18:58:03 +00:00
|
|
|
url = "mirror://sourceforge/blobby/Blobby%20Volley%202%20%28Linux%29/1.0/blobby2-linux-1.0.tar.gz";
|
2014-07-01 08:04:36 +01:00
|
|
|
sha256 = "1qpmbdlyhfbrdsq4vkb6cb3b8mh27fpizb71q4a21ala56g08yms";
|
2012-04-17 14:06:12 +01: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 14:06:12 +01:00
|
|
|
|
2014-07-01 08:04:36 +01:00
|
|
|
preConfigure=''
|
|
|
|
sed -e '1i#include <iostream>' -i src/NetworkMessage.cpp
|
2012-04-17 14:06:12 +01:00
|
|
|
'';
|
|
|
|
|
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; {
|
2013-10-05 15:22:46 +01:00
|
|
|
description = ''A blobby volleyball game'';
|
2020-12-31 07:48:55 +00:00
|
|
|
license = licenses.bsd3;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ raskin ];
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://blobby.sourceforge.net/";
|
2018-11-24 18:58:03 +00:00
|
|
|
downloadPage = "https://sourceforge.net/projects/blobby/files/Blobby%20Volley%202%20%28Linux%29/";
|
2012-04-17 14:06:12 +01:00
|
|
|
};
|
|
|
|
}
|