2012-04-17 15:06:12 +02:00
|
|
|
{stdenv, fetchurl, SDL, SDL_image, mesa, cmake, physfs, boost, zip, zlib}:
|
|
|
|
stdenv.mkDerivation rec {
|
2013-07-13 21:41:52 +02:00
|
|
|
version = "1.0-rc3";
|
2012-04-17 15:06:12 +02:00
|
|
|
name = "blobby-volley-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2013-03-21 10:26:02 +01:00
|
|
|
url = "mirror://sourceforge/project/blobby/Blobby%20Volley%202%20%28Linux%29/1.0RC3/blobby2-linux-1.0rc3.tar.gz";
|
|
|
|
sha256 = "10f50b2ygw8cb9mp33wpdwv9p6lc10qlwc1xd44bbcby1d9v5ga5";
|
2012-04-17 15:06:12 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [SDL SDL_image mesa cmake physfs boost zip zlib];
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
sed -re '1i#include <cassert>' -i src/CrossCorrelation.h
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
2013-10-05 16:22:46 +02:00
|
|
|
description = ''A blobby volleyball game'';
|
2012-04-17 15:56:38 +02:00
|
|
|
license = with stdenv.lib.licenses; bsd3;
|
2012-04-17 15:06:12 +02:00
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [raskin];
|
|
|
|
};
|
|
|
|
}
|