about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2020-11-25 07:43:06 -0800
committerGitHub <noreply@github.com>2020-11-25 07:43:06 -0800
commit327338c74a3eb1b8917c6f4189c45ac90053e7a0 (patch)
treed861718ae9a9802766956d0263c24608daa54d93 /pkgs/applications
parentefa3d96f0c634e0a82ebb4f1ef3fd93519bf8e8d (diff)
parent129c30e26dbe1873697fb73b29f1ee558f6e5b6e (diff)
Merge pull request #103357 from rhoriguchi/master
Add aarch64-linux support to resilio-sync pkgs
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/networking/resilio-sync/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/applications/networking/resilio-sync/default.nix b/pkgs/applications/networking/resilio-sync/default.nix
index fe75268c0ecb3..537e0fc818004 100644
--- a/pkgs/applications/networking/resilio-sync/default.nix
+++ b/pkgs/applications/networking/resilio-sync/default.nix
@@ -4,6 +4,7 @@ let
   arch = {
     x86_64-linux = "x64";
     i686-linux = "i386";
+    aarch64-linux = "arm64";
   }.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
   libPath = stdenv.lib.makeLibraryPath [ stdenv.cc.libc ];
 
@@ -16,6 +17,7 @@ in stdenv.mkDerivation rec {
     sha256 = {
       x86_64-linux = "0gar5lzv1v4yqmypwqsjnfb64vffzn8mw9vnjr733fgf1pmr57hf";
       i686-linux   = "1bws7r86h1vysjkhyvp2zk8yvxazmlczvhjlcayldskwq48iyv6w";
+      aarch64-linux = "0j8wk5cf8bcaaqxi8gnqf1mpv8nyfjyr4ibls7jnn2biqq767af2";
     }.${stdenv.hostPlatform.system};
   };