summary refs log tree commit diff
path: root/pkgs/development/tools/ccloud-cli
diff options
context:
space:
mode:
authorWael M. Nasreddine <wael.nasreddine@gmail.com>2021-01-04 20:24:33 -0800
committerWael Nasreddine <wael@keeptruckin.com>2021-03-19 15:59:23 -0700
commit9b05bad4ba234d7aa73aac84b3babd4e849d8fcd (patch)
treef0f439d203df648f0e8418ea37e4cda5f7870968 /pkgs/development/tools/ccloud-cli
parent48b0b3f72a856c3cc6e51a66d29fdd7ee4bf98c1 (diff)
downloadnixpkgs-9b05bad4ba234d7aa73aac84b3babd4e849d8fcd.tar
nixpkgs-9b05bad4ba234d7aa73aac84b3babd4e849d8fcd.tar.gz
nixpkgs-9b05bad4ba234d7aa73aac84b3babd4e849d8fcd.tar.bz2
nixpkgs-9b05bad4ba234d7aa73aac84b3babd4e849d8fcd.tar.lz
nixpkgs-9b05bad4ba234d7aa73aac84b3babd4e849d8fcd.tar.xz
nixpkgs-9b05bad4ba234d7aa73aac84b3babd4e849d8fcd.tar.zst
nixpkgs-9b05bad4ba234d7aa73aac84b3babd4e849d8fcd.zip
ccloud-cli: Declare the actual supported platforms
Not all Linux and Darwin platforms are supported, only their x86_64
variants are supported.
Diffstat (limited to 'pkgs/development/tools/ccloud-cli')
-rw-r--r--pkgs/development/tools/ccloud-cli/default.nix9
1 files changed, 8 insertions, 1 deletions
diff --git a/pkgs/development/tools/ccloud-cli/default.nix b/pkgs/development/tools/ccloud-cli/default.nix
index e122f6186c1..3095d661ab3 100644
--- a/pkgs/development/tools/ccloud-cli/default.nix
+++ b/pkgs/development/tools/ccloud-cli/default.nix
@@ -28,6 +28,13 @@ stdenv.mkDerivation rec {
     homepage = "https://docs.confluent.io/current/cloud/cli/index.html";
     license = licenses.unfree;
     maintainers = with maintainers; [ kalbasit ];
-    platforms = platforms.linux ++ platforms.darwin;
+
+    # TODO: There's support for i686 systems but I do not have any such system
+    # to build it locally on, it's also unfree so I cannot rely on ofborg to
+    # build it. Get the list of supported system by looking at the list of
+    # files in the S3 bucket:
+    #
+    #   https://s3-us-west-2.amazonaws.com/confluent.cloud?prefix=ccloud-cli/archives/1.25.0/&delimiter=/%27
+    platforms = [ "x86_64-linux" "x86_64-darwin" ];
   };
 }