mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
19 lines
495 B
Nix
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";
|
|
};
|
|
}
|