swig: format with nixfmt-rfc-style

This commit is contained in:
Emily 2024-09-12 11:34:43 +01:00
parent 44e6a1456f
commit e3360d745c

View File

@ -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" ];