nixpkgs/pkgs/development/tools/rhc/default.nix
2017-01-18 00:52:56 +01:00

16 lines
286 B
Nix

{ lib, bundlerEnv, ruby }:
bundlerEnv {
name = "rhc-1.36.4";
inherit ruby;
gemdir = ./.;
meta = with lib; {
homepage = https://github.com/openshift/rhc;
description = "OpenShift client tools";
license = licenses.asl20;
maintaners = maintainers.szczyp;
};
}