Commit e3360d74 authored by Emily's avatar Emily
Browse files

swig: format with `nixfmt-rfc-style`

parent 44e6a145
Loading
Loading
Loading
Loading
+16 −2
Original line number Diff line number Diff line
{ 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" ];