pixelnuke: add 2019-05-19

feature/hass
Ingolf Wagner 2020-02-23 19:54:01 +08:00
parent 7f67e98ac8
commit 5cf17fa66f
Signed by: palo
GPG Key ID: 76BF5F1928B9618B
1 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,31 @@
{ stdenv, fetchgit, libevent, glew, glfw, ... }:
stdenv.mkDerivation rec {
version = "2019-05-19";
name = "pixelnuke-${version}";
src = fetchgit {
url = "https://github.com/defnull/pixelflut.git";
rev = "3458157a242ba1789de7ce308480f4e1cbacc916";
sha256 = "03dp0p00chy00njl4w02ahxqiwqpjsrvwg8j4yi4dgckkc3gbh40";
};
buildInputs = [ libevent glew glfw ];
buildPhase = ''
cd pixelnuke
make
'';
installPhase = ''
mkdir -p $out/bin
cp ./pixelnuke $out/bin/
'';
meta = with stdenv.lib; {
description = "Multiplayer canvas";
homepage = "https://cccgoe.de/wiki/Pixelflut";
license = licenses.unknown;
platforms = platforms.linux;
maintainers = with maintainers; [ mrVanDalo ];
};
}