nixpkgs/pkgs/tools/virtualization/vpsfree-client/default.nix
2020-05-02 19:11:23 +00:00

18 lines
454 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; [ zimbatm ];
license = licenses.gpl3;
platforms = platforms.unix;
};
}