nixpkgs/pkgs/development/tools/rhc/default.nix
2017-12-07 07:50:47 -05:00

30 lines
553 B
Nix

{ lib, bundlerEnv, ruby_2_2, stdenv, makeWrapper }:
stdenv.mkDerivation rec {
name = "rhc-1.38.7";
env = bundlerEnv {
name = "rhc-1.38.7-gems";
ruby = ruby_2_2;
gemdir = ./.;
};
buildInputs = [ makeWrapper ];
phases = [ "installPhase" ];
installPhase = ''
mkdir -p $out/bin
makeWrapper ${env}/bin/rhc $out/bin/rhc
'';
meta = with lib; {
homepage = https://github.com/openshift/rhc;
description = "OpenShift client tools";
license = licenses.asl20;
maintainers = [ maintainers.szczyp ];
};
}