Merge pull request #89768 from 1000101/ninvaders

ninvaders: init at 0.1.2
This commit is contained in:
Marek Mahut 2020-06-07 22:53:45 +02:00 committed by GitHub
commit 458919e9fe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ stdenv, fetchFromGitHub, cmake, ncurses }:
stdenv.mkDerivation rec{
pname = "ninvaders";
version = "0.1.2";
src = fetchFromGitHub {
owner = "sf-refugees";
repo = pname;
rev = "v${version}";
sha256 = "1wmwws1zsap4bfc2439p25vnja0hnsf57k293rdxw626gly06whi";
};
buildInputs = [ cmake ncurses ];
meta = with stdenv.lib; {
description = "Space Invaders clone based on ncurses";
homepage = "http://ninvaders.sourceforge.net/";
license = licenses.gpl2;
maintainers = with maintainers; [ maintainers."1000101" ];
platforms = platforms.all;
};
}

View file

@ -23863,6 +23863,8 @@ in
nexuiz = callPackage ../games/nexuiz { };
ninvaders = callPackage ../games/ninvaders { };
njam = callPackage ../games/njam { };
newtonwars = callPackage ../games/newtonwars { };