From 187760e07a9f50f29ffc7f6a08f849367d4dbe81 Mon Sep 17 00:00:00 2001 From: polykernel <81340136+polykernel@users.noreply.github.com> Date: Sat, 7 Aug 2021 14:40:56 -0400 Subject: [PATCH] fuzzel: refactor derivation for long formal argument and list --- pkgs/applications/misc/fuzzel/default.nix | 40 +++++++++++++++++++++-- 1 file changed, 37 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/misc/fuzzel/default.nix b/pkgs/applications/misc/fuzzel/default.nix index 3c7a33ce26df..32030d682403 100644 --- a/pkgs/applications/misc/fuzzel/default.nix +++ b/pkgs/applications/misc/fuzzel/default.nix @@ -1,4 +1,21 @@ -{ stdenv, lib, fetchFromGitea, pkg-config, meson, ninja, wayland, pixman, cairo, librsvg, wayland-protocols, wlroots, libxkbcommon, scdoc, git, tllist, fcft}: +{ stdenv +, lib +, fetchFromGitea +, pkg-config +, meson +, ninja +, wayland +, pixman +, cairo +, librsvg +, wayland-protocols +, wlroots +, libxkbcommon +, scdoc +, git +, tllist +, fcft +}: stdenv.mkDerivation rec { pname = "fuzzel"; @@ -12,8 +29,25 @@ stdenv.mkDerivation rec { sha256 = "sha256-JW5sAlTprSRIdFbmSaUreGtNccERgQMGEW+WCSscYQk="; }; - nativeBuildInputs = [ pkg-config meson ninja scdoc git ]; - buildInputs = [ wayland pixman cairo librsvg wayland-protocols wlroots libxkbcommon tllist fcft ]; + nativeBuildInputs = [ + pkg-config + meson + ninja + scdoc + git + ]; + + buildInputs = [ + wayland + pixman + cairo + librsvg + wayland-protocols + wlroots + libxkbcommon + tllist + fcft + ]; meta = with lib; { description = "Wayland-native application launcher, similar to rofi’s drun mode";