mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
33c09a0e40
Fix: CVE-2016-10173
30 lines
548 B
Nix
30 lines
548 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;
|
|
maintaners = maintainers.szczyp;
|
|
};
|
|
}
|