summary refs log tree commit diff
path: root/pkgs/tools/wayland/sov/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/wayland/sov/default.nix')
-rw-r--r--pkgs/tools/wayland/sov/default.nix26
1 files changed, 21 insertions, 5 deletions
diff --git a/pkgs/tools/wayland/sov/default.nix b/pkgs/tools/wayland/sov/default.nix
index 38578544feb..774cb5abd2b 100644
--- a/pkgs/tools/wayland/sov/default.nix
+++ b/pkgs/tools/wayland/sov/default.nix
@@ -1,6 +1,13 @@
-{ lib, stdenv, fetchFromGitHub
-, meson, pkg-config, wayland-scanner, ninja
-, wayland, wayland-protocols, freetype,
+{ lib
+, stdenv
+, fetchFromGitHub
+, meson
+, ninja
+, pkg-config
+, wayland-scanner
+, freetype
+, wayland
+, wayland-protocols
 }:
 
 stdenv.mkDerivation rec {
@@ -19,8 +26,17 @@ stdenv.mkDerivation rec {
   '';
 
   strictDeps = true;
-  nativeBuildInputs = [ meson pkg-config wayland-scanner ninja ];
-  buildInputs = [ wayland wayland-protocols freetype ];
+  nativeBuildInputs = [
+    meson
+    ninja
+    pkg-config
+    wayland-scanner
+  ];
+  buildInputs = [
+    freetype
+    wayland
+    wayland-protocols
+  ];
 
   meta = with lib; {
     description = "An overlay that shows schemas for all workspaces to make navigation in sway easier.";