nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

rubyfmt: mark as broken on aarch64-darwin

+4 -4
+4 -4
pkgs/development/tools/rubyfmt/default.nix
··· 73 73 mv $out/bin/rubyfmt{-main,} 74 74 ''; 75 75 76 - meta = with lib; { 76 + meta = { 77 77 description = "Ruby autoformatter"; 78 78 homepage = "https://github.com/fables-tales/rubyfmt"; 79 - license = licenses.mit; 80 - maintainers = with maintainers; [ bobvanderlinden ]; 81 - broken = stdenv.isDarwin && stdenv.isx86_64; 79 + license = lib.licenses.mit; 80 + maintainers = with lib.maintainers; [ bobvanderlinden ]; 81 + broken = stdenv.isDarwin; 82 82 mainProgram = "rubyfmt"; 83 83 }; 84 84 }