python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / games / vimgolf / default.nix
blob2847ff7dd3bfdac7ad14703de15552b0a78a132e
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 = "A game that tests Vim efficiency";
12     homepage = "https://vimgolf.com";
13     license = licenses.mit;
14     maintainers = with maintainers; [ leungbk ];
15     platforms = platforms.unix;
16   };