summary refs log tree commit diff
diff options
context:
space:
mode:
authorBenno Fünfstück <benno.fuenfstueck@gmail.com>2020-03-16 15:23:31 +0100
committerBenno Fünfstück <benno.fuenfstueck@gmail.com>2020-03-16 15:23:31 +0100
commitef3175bcfa0d44c5529e02e0da5668a4c1438e9b (patch)
tree8975bed28ef4a3f18869a44190ba448f7e1077ea
parent02fc8dc4dcdc72d3b895b7cd707c69d5f5f04c28 (diff)
downloadnixpkgs-ef3175bcfa0d44c5529e02e0da5668a4c1438e9b.tar
nixpkgs-ef3175bcfa0d44c5529e02e0da5668a4c1438e9b.tar.gz
nixpkgs-ef3175bcfa0d44c5529e02e0da5668a4c1438e9b.tar.bz2
nixpkgs-ef3175bcfa0d44c5529e02e0da5668a4c1438e9b.tar.lz
nixpkgs-ef3175bcfa0d44c5529e02e0da5668a4c1438e9b.tar.xz
nixpkgs-ef3175bcfa0d44c5529e02e0da5668a4c1438e9b.tar.zst
nixpkgs-ef3175bcfa0d44c5529e02e0da5668a4c1438e9b.zip
racket: enable building on aarch64
-rw-r--r--pkgs/development/interpreters/racket/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/interpreters/racket/default.nix b/pkgs/development/interpreters/racket/default.nix
index 3e9716af550..8e66bf96e8c 100644
--- a/pkgs/development/interpreters/racket/default.nix
+++ b/pkgs/development/interpreters/racket/default.nix
@@ -105,7 +105,7 @@ stdenv.mkDerivation rec {
     homepage = https://racket-lang.org/;
     license = with licenses; [ asl20 /* or */ mit ];
     maintainers = with maintainers; [ kkallio henrytill vrthra ];
-    platforms = [ "x86_64-darwin" "x86_64-linux" ];
+    platforms = [ "x86_64-darwin" "x86_64-linux" "aarch64-linux" ];
     broken = stdenv.isDarwin; # No support yet for setting FFI lookup path
   };
 }