lol

Merge pull request #40607 from Infinisil/add/pacvim

pacvim: init at 2018-05-16

authored by

Will Dietz and committed by
GitHub
2efa96b6 12911116

+25
+23
pkgs/games/pacvim/default.nix
··· 1 + { stdenv, fetchFromGitHub, ncurses }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "pacvim-${version}"; 5 + version = "2018-05-16"; 6 + src = fetchFromGitHub { 7 + owner = "jmoon018"; 8 + repo = "PacVim"; 9 + rev = "ca7c8833c22c5fe97974ba5247ef1fcc00cedb8e"; 10 + sha256 = "1kq6j7xmsl5qfl1246lyglkb2rs9mnb2rhsdrp18965dpbj2mhx2"; 11 + }; 12 + 13 + buildInputs = [ ncurses ]; 14 + makeFlags = [ "PREFIX=$(out)" ]; 15 + 16 + meta = with stdenv.lib; { 17 + homepage = "https://github.com/jmoon018/PacVim"; 18 + description = "PacVim is a game that teaches you vim commands."; 19 + maintainers = with maintainers; [ infinisil ]; 20 + license = licenses.lgpl3; 21 + platforms = platforms.unix; 22 + }; 23 + }
+2
pkgs/top-level/all-packages.nix
··· 19356 19356 19357 19357 orthorobot = callPackage ../games/orthorobot { love = love_0_7; }; 19358 19358 19359 + pacvim = callPackage ../games/pacvim { }; 19360 + 19359 19361 performous = callPackage ../games/performous { }; 19360 19362 19361 19363 pingus = callPackage ../games/pingus {};