nixpkgs/pkgs/games/vimgolf/default.nix
Brian Leung 19d4aedf71
vimgolf: init at 0.5.0 (#157642)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2022-03-05 01:22:42 +01:00

18 lines
405 B
Nix

{ lib, bundlerApp, bundlerUpdateScript }:
bundlerApp {
pname = "vimgolf";
gemdir = ./.;
exes = [ "vimgolf" ];
passthru.updateScript = bundlerUpdateScript "vimgolf";
meta = with lib; {
description = "A game that tests Vim efficiency";
homepage = "https://vimgolf.com";
license = licenses.mit;
maintainers = with maintainers; [ leungbk ];
platforms = platforms.unix;
};
}