summaryrefslogtreecommitdiffstats
path: root/pkgs/games/blobby
diff options
context:
space:
mode:
authorBen Siraphob <bensiraphob@gmail.com>2020-12-31 14:48:55 +0700
committerBen Siraphob <bensiraphob@gmail.com>2021-01-01 11:52:33 +0700
commitb04fc593e7b55fe1f74421b11589f12a339c92e2 (patch)
treefa9bbaeb68f1e0cfa6ea2f9580ea2892eed41b3e /pkgs/games/blobby
parent54ab07c1fe4e39c5a84834f85300c63e3809ac2d (diff)
treewide: cmake buildInputs to nativeBuildInputs, minor cleanups
Diffstat (limited to 'pkgs/games/blobby')
-rw-r--r--pkgs/games/blobby/default.nix22
1 files changed, 9 insertions, 13 deletions
diff --git a/pkgs/games/blobby/default.nix b/pkgs/games/blobby/default.nix
index ea8bddfa16d4..98c31f4e9fe8 100644
--- a/pkgs/games/blobby/default.nix
+++ b/pkgs/games/blobby/default.nix
@@ -1,24 +1,21 @@
-{stdenv, fetchurl, SDL2, SDL2_image, libGLU, libGL, cmake, physfs, boost, zip, zlib
-, pkgconfig, unzip}:
+{ stdenv, fetchurl, SDL2, SDL2_image, libGLU, libGL, cmake, physfs, boost, zip, zlib, pkg-config }:
+
stdenv.mkDerivation rec {
- version = "1.0";
pname = "blobby-volley";
+ version = "1.0";
src = fetchurl {
url = "mirror://sourceforge/blobby/Blobby%20Volley%202%20%28Linux%29/1.0/blobby2-linux-1.0.tar.gz";
sha256 = "1qpmbdlyhfbrdsq4vkb6cb3b8mh27fpizb71q4a21ala56g08yms";
};
- nativeBuildInputs = [ pkgconfig ];
- buildInputs = [SDL2 SDL2_image libGLU libGL cmake physfs boost zip zlib
- unzip];
+ nativeBuildInputs = [ cmake pkg-config zip ];
+ buildInputs = [ SDL2 SDL2_image libGLU libGL physfs boost zlib ];
preConfigure=''
sed -e '1i#include <iostream>' -i src/NetworkMessage.cpp
'';
- inherit unzip;
-
postInstall = ''
cp ../data/Icon.bmp "$out/share/blobby/"
mv "$out/bin"/blobby{,.bin}
@@ -26,13 +23,12 @@ stdenv.mkDerivation rec {
chmod a+x "$out/bin/blobby"
'';
- meta = {
+ meta = with stdenv.lib; {
description = ''A blobby volleyball game'';
- license = stdenv.lib.licenses.bsd3;
- platforms = with stdenv.lib.platforms; linux;
- maintainers = with stdenv.lib.maintainers; [raskin];
+ license = licenses.bsd3;
+ platforms = platforms.linux;
+ maintainers = with maintainers; [ raskin ];
homepage = "http://blobby.sourceforge.net/";
downloadPage = "https://sourceforge.net/projects/blobby/files/Blobby%20Volley%202%20%28Linux%29/";
- inherit version;
};
}