Merge pull request #103357 from rhoriguchi/master

Add aarch64-linux support to resilio-sync pkgs
This commit is contained in:
Ryan Mulligan 2020-11-25 07:43:06 -08:00 committed by GitHub
commit 327338c74a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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};
};