nixpkgs/pkgs/development/tools/rhc/default.nix

16 lines
286 B
Nix
Raw Normal View History

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