pixelnuke: add 2019-05-19
This commit is contained in:
parent
7f67e98ac8
commit
5cf17fa66f
1 changed files with 31 additions and 0 deletions
31
pkgs/pixelnuke/default.nix
Normal file
31
pkgs/pixelnuke/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue