From 956487c28ba8aba31c71aa045728031d6ea2dc02 Mon Sep 17 00:00:00 2001 From: Emily Date: Thu, 11 Jul 2024 17:12:33 +0100 Subject: [PATCH] qodem: format with `nixfmt-rfc-style` --- pkgs/by-name/qo/qodem/package.nix | 24 +++++++++++++++++++++--- 1 file changed, 21 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/qo/qodem/package.nix b/pkgs/by-name/qo/qodem/package.nix index 6451a7d8d316..7cf505f91449 100644 --- a/pkgs/by-name/qo/qodem/package.nix +++ b/pkgs/by-name/qo/qodem/package.nix @@ -1,4 +1,14 @@ -{ lib, stdenv, fetchFromGitHub, autoconf, automake, ncurses, SDL, gpm, miniupnpc }: +{ + lib, + stdenv, + fetchFromGitHub, + autoconf, + automake, + ncurses, + SDL, + gpm, + miniupnpc, +}: stdenv.mkDerivation rec { pname = "qodem"; @@ -11,8 +21,16 @@ stdenv.mkDerivation rec { sha256 = "NAdcTVmNrDa3rbsbxJxFoI7sz5NK5Uw+TbP+a1CdB+Q="; }; - nativeBuildInputs = [ autoconf automake ]; - buildInputs = [ ncurses SDL gpm miniupnpc ]; + nativeBuildInputs = [ + autoconf + automake + ]; + buildInputs = [ + ncurses + SDL + gpm + miniupnpc + ]; meta = with lib; { homepage = "https://qodem.sourceforge.net/";