summary refs log blame commit diff
path: root/pkgs/development/tools/rhc/default.nix
blob: e9efdb9f423cce83352a91f36103480281bd271e (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
















                                                
{ lib, bundlerEnv, ruby }:

bundlerEnv {
  name = "rhc-1.36.4";

  inherit ruby;
  gemfile = ./Gemfile;
  lockfile = ./Gemfile.lock;
  gemset = ./gemset.nix;

  meta = with lib; {
    homepage = https://github.com/openshift/rhc;
    description = "OpenShift client tools";
    license = licenses.asl20;
    maintaners = maintainers.szczyp;
  };
}