about summary refs log tree commit diff
path: root/pkgs/development/tools
diff options
context:
space:
mode:
authorGaetan Lepage <gaetan@glepage.com>2024-06-27 14:19:00 +0200
committerGaetan Lepage <gaetan@glepage.com>2024-06-27 14:28:27 +0200
commit418e9bdf39b9c245d05f425f5efc009abe5b6c54 (patch)
tree120e6bb3c1baa7e9c82f923a5e299491631f4d18 /pkgs/development/tools
parentdb354e5589c830d42924192c4866070a31b2b94b (diff)
rubyfmt: mark as broken on aarch64-darwin
Diffstat (limited to 'pkgs/development/tools')
-rw-r--r--pkgs/development/tools/rubyfmt/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/tools/rubyfmt/default.nix b/pkgs/development/tools/rubyfmt/default.nix
index a2bd6d453fcdb..287959dbf0b57 100644
--- a/pkgs/development/tools/rubyfmt/default.nix
+++ b/pkgs/development/tools/rubyfmt/default.nix
@@ -73,12 +73,12 @@ rustPlatform.buildRustPackage rec {
     mv $out/bin/rubyfmt{-main,}
   '';
 
-  meta = with lib; {
+  meta = {
     description = "Ruby autoformatter";
     homepage = "https://github.com/fables-tales/rubyfmt";
-    license = licenses.mit;
-    maintainers = with maintainers; [ bobvanderlinden ];
-    broken = stdenv.isDarwin && stdenv.isx86_64;
+    license = lib.licenses.mit;
+    maintainers = with lib.maintainers; [ bobvanderlinden ];
+    broken = stdenv.isDarwin;
     mainProgram = "rubyfmt";
   };
 }