mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
swig: format with nixfmt-rfc-style
This commit is contained in:
parent
44e6a1456f
commit
e3360d745c
@ -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" ];
|
||||
|
Loading…
Reference in New Issue
Block a user