mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 00:53:12 +03:00
bluemix-cli: init at 0.6.6 (#40147)
Adds the (non-free, binary) IBM Bluemix CLI which is required to administrate IBM Bluemix services.
This commit is contained in:
parent
5d66a6bbdb
commit
a8768c610e
25
pkgs/tools/admin/bluemix-cli/default.nix
Normal file
25
pkgs/tools/admin/bluemix-cli/default.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{ lib, stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "bluemix-cli-${version}";
|
||||
version = "0.6.6";
|
||||
|
||||
src = fetchurl {
|
||||
name = "linux64.tar.gz";
|
||||
url = "https://clis.ng.bluemix.net/download/bluemix-cli/${version}/linux64";
|
||||
sha256 = "1swjawc4szqrl0wgjcb4na1hbxylaqp2mp53lxsbfbk1db0c3y85";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
install -m755 -D --target $out/bin bin/bluemix bin/bluemix-analytics bin/cfcli/cf
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Administration CLI for IBM BlueMix";
|
||||
homepage = "https://console.bluemix.net/docs/cli/index.html";
|
||||
downloadPage = "https://console.bluemix.net/docs/cli/reference/bluemix_cli/download_cli.html#download_install";
|
||||
license = licenses.unfree;
|
||||
maintainers = maintainers.tazjin;
|
||||
platforms = [ "x86_64-linux" ];
|
||||
};
|
||||
}
|
@ -833,6 +833,8 @@ with pkgs;
|
||||
|
||||
blink = callPackage ../applications/networking/instant-messengers/blink { };
|
||||
|
||||
bluemix-cli = callPackage ../tools/admin/bluemix-cli { };
|
||||
|
||||
libqmatrixclient = libsForQt5.callPackage ../development/libraries/libqmatrixclient { };
|
||||
|
||||
quaternion = libsForQt5.callPackage ../applications/networking/instant-messengers/quaternion { };
|
||||
|
Loading…
Reference in New Issue
Block a user