depot/third_party/nixpkgs/pkgs/tools/virtualization/vpsfree-client/default.nix
Default email 9a250f78df Project import generated by Copybara.
GitOrigin-RevId: 8536aeb4154f5458994080bc4cf542695c144739
2020-05-03 19:38:23 +02:00

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