nixpkgs/pkgs/games/blobby/default.nix

35 lines
1.1 KiB
Nix
Raw Normal View History

2021-01-15 04:31:39 +00:00
{ lib, stdenv, fetchurl, SDL2, SDL2_image, libGLU, libGL, cmake, physfs, boost, zip, zlib, pkg-config }:
stdenv.mkDerivation rec {
pname = "blobby-volley";
version = "1.0";
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 07:04:36 +00:00
sha256 = "1qpmbdlyhfbrdsq4vkb6cb3b8mh27fpizb71q4a21ala56g08yms";
};
nativeBuildInputs = [ cmake pkg-config zip ];
buildInputs = [ SDL2 SDL2_image libGLU libGL physfs boost zlib ];
2014-07-01 07:04:36 +00:00
preConfigure=''
sed -e '1i#include <iostream>' -i src/NetworkMessage.cpp
'';
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; {
description = ''A blobby volleyball game'';
license = licenses.bsd3;
platforms = platforms.linux;
maintainers = with maintainers; [ raskin ];
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/";
};
}