mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
blobby: minor update, making it build
This commit is contained in:
parent
230b59469e
commit
6c21cde68d
2 changed files with 12 additions and 9 deletions
|
@ -1,14 +1,19 @@
|
|||
{stdenv, fetchurl, SDL, SDL_image, mesa, cmake, physfs, boost, zip, zlib}:
|
||||
{ stdenv, fetchurl, SDL, SDL_image, mesa, cmake, physfs, boostHeaders
|
||||
, zip, zlib/*, lua5, tinyxml*/ }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "2.0-RC1";
|
||||
name = "blobby-volley-${version}";
|
||||
version = "1.0rc3";
|
||||
name = "blobby-volley-2-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/project/blobby/Blobby%20Volley%202%20%28Linux%29/1.0RC1/blobby2-linux-1.0rc1.tar.gz";
|
||||
sha256 = "1cb56bd31vqkc12cmzp43q2aai99505isq2mii95jp0rzdqks4fy";
|
||||
url = "mirror://sourceforge/blobby/blobby2-linux-${version}.tar.gz";
|
||||
sha256 = "10f50b2ygw8cb9mp33wpdwv9p6lc10qlwc1xd44bbcby1d9v5ga5";
|
||||
};
|
||||
|
||||
buildInputs = [SDL SDL_image mesa cmake physfs boost zip zlib];
|
||||
buildInputs = [
|
||||
SDL SDL_image mesa cmake physfs boostHeaders
|
||||
zip zlib # lua5 tinyxml # ToDo: use shared libs?
|
||||
];
|
||||
|
||||
preConfigure = ''
|
||||
sed -re '1i#include <cassert>' -i src/CrossCorrelation.h
|
||||
|
|
|
@ -8153,9 +8153,7 @@ let
|
|||
|
||||
blackshadeselite = callPackage ../games/blackshadeselite { };
|
||||
|
||||
blobby = callPackage ../games/blobby {
|
||||
boost = boost149;
|
||||
};
|
||||
blobby = callPackage ../games/blobby { };
|
||||
|
||||
bsdgames = callPackage ../games/bsdgames { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue