My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/games/vimgolf/default.nix

17 lines
405 B

{ 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;
};
}