about summary refs log tree commit diff
path: root/pkgs/development/compilers/ldc
diff options
context:
space:
mode:
authorLio李歐 <lionello@users.noreply.github.com>2021-12-14 10:22:08 -0800
committerGitHub <noreply@github.com>2021-12-14 10:22:08 -0800
commit1a17a3a2879db7ce1f3306b1422d1b2b4307cf02 (patch)
tree9b5b5efc1893954d4fc411869284f55df8e2c882 /pkgs/development/compilers/ldc
parentfc58c3761e9b9b3aee635bb2894bab97aa1b6ff6 (diff)
ldc: add aarch64-linux
Diffstat (limited to 'pkgs/development/compilers/ldc')
-rw-r--r--pkgs/development/compilers/ldc/generic.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/compilers/ldc/generic.nix b/pkgs/development/compilers/ldc/generic.nix
index 93ee83cb0abea..93423d5a1b290 100644
--- a/pkgs/development/compilers/ldc/generic.nix
+++ b/pkgs/development/compilers/ldc/generic.nix
@@ -132,6 +132,6 @@ stdenv.mkDerivation rec {
     # from https://github.com/ldc-developers/ldc/blob/master/LICENSE
     license = with licenses; [ bsd3 boost mit ncsa gpl2Plus ];
     maintainers = with maintainers; [ ThomasMader lionello ];
-    platforms = [ "x86_64-linux" "i686-linux" "x86_64-darwin" "aarch64-darwin" ];
+    platforms = [ "x86_64-linux" "i686-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ];
   };
 }