From e3360d745c36caed0b868e0447e57fb30b1fb9d9 Mon Sep 17 00:00:00 2001 From: Emily Date: Thu, 12 Sep 2024 11:34:43 +0100 Subject: [PATCH] swig: format with `nixfmt-rfc-style` --- pkgs/by-name/sw/swig/package.nix | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/sw/swig/package.nix b/pkgs/by-name/sw/swig/package.nix index bae53ad42f9d..1ccaf4fb13fe 100644 --- a/pkgs/by-name/sw/swig/package.nix +++ b/pkgs/by-name/sw/swig/package.nix @@ -1,4 +1,13 @@ -{ lib, stdenv, fetchFromGitHub, autoconf, automake, libtool, bison, pcre2 }: +{ + lib, + stdenv, + fetchFromGitHub, + autoconf, + automake, + libtool, + bison, + pcre2, +}: stdenv.mkDerivation (finalAttrs: { pname = "swig"; @@ -12,7 +21,12 @@ stdenv.mkDerivation (finalAttrs: { }; PCRE_CONFIG = "${pcre2.dev}/bin/pcre-config"; - nativeBuildInputs = [ autoconf automake libtool bison ]; + nativeBuildInputs = [ + autoconf + automake + libtool + bison + ]; buildInputs = [ pcre2 ]; configureFlags = [ "--without-tcl" ];