forgejo-lts: 7.0.10 -> 7.0.11
[NixPkgs.git] / pkgs / games / vimgolf / default.nix
blob917dd3ffdfa94077a9c81e7cd3f578f5de654166
1 { lib, bundlerApp, bundlerUpdateScript }:
3 bundlerApp {
4   pname = "vimgolf";
5   gemdir = ./.;
6   exes = [ "vimgolf" ];
8   passthru.updateScript = bundlerUpdateScript "vimgolf";
10   meta = with lib; {
11     description = "Game that tests Vim efficiency";
12     homepage = "https://vimgolf.com";
13     license = licenses.mit;
14     maintainers = with maintainers; [ leungbk ];
15     platforms = platforms.unix;
16   };