summary refs log tree commit diff
path: root/pkgs/tools/virtualization/vpsfree-client/default.nix
blob: 17d570414882ebe21b20bf3f95d0d35c1d0b772a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ lib, bundlerApp, bundlerUpdateScript }:

bundlerApp {
  pname = "vpsfree-client";
  gemdir = ./.;
  exes = [ "vpsfreectl" ];

  passthru.updateScript = bundlerUpdateScript "vpsfree-client";

  meta = with lib; {
    description = "Ruby API and CLI for the vpsFree.cz API";
    homepage = "https://github.com/vpsfreecz/vpsfree-client";
    maintainers = with maintainers; [ zimbatm ];
    license = licenses.gpl3;
    platforms = platforms.unix;
  };
}