about summary refs log tree commit diff
path: root/pkgs/development/tools/rhc/default.nix
blob: e6b342dd7b620c7006c90bcfdb4579b6601cecfe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ 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;
  };
}