From 4e80fc3c151bfcc7c0ac455ece10dc948ed52fc3 Mon Sep 17 00:00:00 2001 From: Troels Henriksen Date: Wed, 19 Mar 2025 19:22:30 +0100 Subject: [PATCH] ocamlPackages.owl-base: add aarch64 to platforms As of 1.2, Owl supports ARM. --- pkgs/development/ocaml-modules/owl-base/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/ocaml-modules/owl-base/default.nix b/pkgs/development/ocaml-modules/owl-base/default.nix index 3efb1bf546a1..d46a76987712 100644 --- a/pkgs/development/ocaml-modules/owl-base/default.nix +++ b/pkgs/development/ocaml-modules/owl-base/default.nix @@ -21,7 +21,7 @@ buildDunePackage rec { description = "Numerical computing library for Ocaml"; homepage = "https://ocaml.xyz"; changelog = "https://github.com/owlbarn/owl/releases"; - platforms = platforms.x86_64; + platforms = platforms.x86_64 ++ platforms.aarch64; maintainers = [ maintainers.bcdarwin ]; license = licenses.mit; };