about summary refs log tree commit diff
diff options
context:
space:
mode:
authorDontEatOreo <57304299+DontEatOreo@users.noreply.github.com>2024-05-15 23:40:00 +0300
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2024-05-17 14:55:25 +0000
commit64ca76edeef0e1731b1e6bd38fc97131be9d5902 (patch)
tree9ccc1f14d2e1e9945e3fc147aa9636f3f176b776
parentbacb8503d3a51d9e9b52e52a1ba45e2c380ad07d (diff)
alt-tab-macos: format with nixfmt-rfc-style
(cherry picked from commit fd07fb8707a817da23b0a4ac7ab54de7f0adc190)
-rw-r--r--pkgs/by-name/al/alt-tab-macos/package.nix14
1 files changed, 9 insertions, 5 deletions
diff --git a/pkgs/by-name/al/alt-tab-macos/package.nix b/pkgs/by-name/al/alt-tab-macos/package.nix
index 1f2ebc8551ca2..44fdbe05d7b98 100644
--- a/pkgs/by-name/al/alt-tab-macos/package.nix
+++ b/pkgs/by-name/al/alt-tab-macos/package.nix
@@ -1,7 +1,8 @@
-{ lib
-, stdenvNoCC
-, fetchurl
-, unzip
+{
+  lib,
+  stdenvNoCC,
+  fetchurl,
+  unzip,
 }:
 
 stdenvNoCC.mkDerivation (finalAttrs: {
@@ -31,7 +32,10 @@ stdenvNoCC.mkDerivation (finalAttrs: {
     homepage = "https://alt-tab-macos.netlify.app";
     license = licenses.gpl3Plus;
     sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
-    maintainers = with maintainers; [ emilytrau Enzime ];
+    maintainers = with maintainers; [
+      emilytrau
+      Enzime
+    ];
     platforms = platforms.darwin;
   };
 })