summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorPavol Rusnak <pavol@rusnak.io>2021-05-19 12:31:17 +0200
committerPavol Rusnak <pavol@rusnak.io>2021-05-19 12:34:25 +0200
commitf99ff01e70b1fb53fd3bb051190a052c7a188e78 (patch)
treeafa2cfc929e2cd03239a566973fd03351c2df013 /pkgs/applications
parenta6b4be87755db9b90e1b7659dde0bfd7738ea351 (diff)
downloadnixpkgs-f99ff01e70b1fb53fd3bb051190a052c7a188e78.tar
nixpkgs-f99ff01e70b1fb53fd3bb051190a052c7a188e78.tar.gz
nixpkgs-f99ff01e70b1fb53fd3bb051190a052c7a188e78.tar.bz2
nixpkgs-f99ff01e70b1fb53fd3bb051190a052c7a188e78.tar.lz
nixpkgs-f99ff01e70b1fb53fd3bb051190a052c7a188e78.tar.xz
nixpkgs-f99ff01e70b1fb53fd3bb051190a052c7a188e78.tar.zst
nixpkgs-f99ff01e70b1fb53fd3bb051190a052c7a188e78.zip
octant: enable aarch64-darwin build
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/networking/cluster/octant/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/applications/networking/cluster/octant/default.nix b/pkgs/applications/networking/cluster/octant/default.nix
index ff86b64fec7..d032577ce19 100644
--- a/pkgs/applications/networking/cluster/octant/default.nix
+++ b/pkgs/applications/networking/cluster/octant/default.nix
@@ -11,6 +11,7 @@ stdenv.mkDerivation rec {
         x86_64-linux = "Linux-64bit";
         aarch64-linux = "Linux-arm64";
         x86_64-darwin = "macOS-64bit";
+        aarch64-darwin = "macOS-arm64";
       }.${system} or (throw "Unsupported system: ${system}");
       fetchsrc = version: sha256: fetchzip {
         url = "https://github.com/vmware-tanzu/octant/releases/download/v${version}/octant_${version}_${suffix}.tar.gz";
@@ -21,6 +22,7 @@ stdenv.mkDerivation rec {
       x86_64-linux = "sha256-VFlZP5d6/YhzVIhveqMc4HfapBt0K/XjtqjCQNc514A=";
       aarch64-linux = "sha256-RfdMfimmoHG4ixBtUVJ/V+mDhQ9aD+yeohkeUMUP8Zg=";
       x86_64-darwin = "sha256-2Qgl3RdA4mMRTqR7o3Q86Zip5wtgvFp1vZn689FUtSI=";
+      aarch64-darwin = "sha256-+eZVg+B5YYf+XnDhNd6OU4+yFM9GtyiavcAr/EXh7XE=";
     };
 
   dontConfigure = true;
@@ -59,6 +61,6 @@ stdenv.mkDerivation rec {
     '';
     license = licenses.asl20;
     maintainers = with maintainers; [ jk ];
-    platforms = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" ];
+    platforms = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ];
   };
 }