dput-ng: fix eval (#364540)
[NixPkgs.git] / pkgs / games / vimgolf / default.nix
blobf2e6c5075f14f3c72a653588a5c8cbd8c7202cee
2   lib,
3   bundlerApp,
4   bundlerUpdateScript,
5 }:
7 bundlerApp {
8   pname = "vimgolf";
9   gemdir = ./.;
10   exes = [ "vimgolf" ];
12   passthru.updateScript = bundlerUpdateScript "vimgolf";
14   meta = with lib; {
15     description = "Game that tests Vim efficiency";
16     homepage = "https://vimgolf.com";
17     license = licenses.mit;
18     maintainers = with maintainers; [ leungbk ];
19     platforms = platforms.unix;
20   };