Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 5d66a6bbdb78
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: a8768c610efd
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on May 8, 2018

  1. bluemix-cli: init at 0.6.6 (#40147)

    Adds the (non-free, binary) IBM Bluemix CLI which is required to
    administrate IBM Bluemix services.
    Vincent Ambo authored and Mic92 committed May 8, 2018

    Verified

    This commit was signed with the committer’s verified signature.
    samsonasik Abdul Malik Ikhsan
    Copy the full SHA
    a8768c6 View commit details
Showing with 27 additions and 0 deletions.
  1. +25 −0 pkgs/tools/admin/bluemix-cli/default.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
25 changes: 25 additions & 0 deletions pkgs/tools/admin/bluemix-cli/default.nix
Original file line number Diff line number Diff line change
@@ -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" ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -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 { };