1{ lib, bundlerApp, bundlerUpdateScript }:
2
3bundlerApp {
4 pname = "vpsfree-client";
5 gemdir = ./.;
6 exes = [ "vpsfreectl" ];
7
8 passthru.updateScript = bundlerUpdateScript "vpsfree-client";
9
10 meta = with lib; {
11 description = "Ruby API and CLI for the vpsFree.cz API";
12 homepage = "https://github.com/vpsfreecz/vpsfree-client";
13 maintainers = with maintainers; [ zimbatm ];
14 license = licenses.gpl3;
15 platforms = platforms.unix;
16 };
17}