pacvim: init at 2018-05-16

This commit is contained in:
Silvan Mosberger 2018-05-16 21:10:34 +02:00
parent e0d6edddd7
commit 00c4ba1ea0
No known key found for this signature in database
GPG key ID: 9424360B4B85C9E7
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ stdenv, fetchFromGitHub, ncurses }:
stdenv.mkDerivation rec {
name = "pacvim-${version}";
version = "2018-05-16";
src = fetchFromGitHub {
owner = "jmoon018";
repo = "PacVim";
rev = "ca7c8833c22c5fe97974ba5247ef1fcc00cedb8e";
sha256 = "1kq6j7xmsl5qfl1246lyglkb2rs9mnb2rhsdrp18965dpbj2mhx2";
};
buildInputs = [ ncurses ];
makeFlags = [ "PREFIX=$(out)" ];
meta = with stdenv.lib; {
homepage = "https://github.com/jmoon018/PacVim";
description = "PacVim is a game that teaches you vim commands.";
maintainers = with maintainers; [ infinisil ];
license = licenses.lgpl3;
platforms = platforms.unix;
};
}

View file

@ -19340,6 +19340,8 @@ with pkgs;
orthorobot = callPackage ../games/orthorobot { love = love_0_7; };
pacvim = callPackage ../games/pacvim { };
performous = callPackage ../games/performous { };
pingus = callPackage ../games/pingus {};