nixpkgs/pkgs/tools/virtualization/vpsfree-client/default.nix
2023-11-24 21:01:03 +01:00

19 lines
495 B
Nix

{ 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; [ aither64 zimbatm ];
license = licenses.gpl3;
platforms = platforms.unix;
mainProgram = "vpsfreectl";
};
}