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: {
|
stdenv.mkDerivation (finalAttrs: {
|
||||||
pname = "swig";
|
pname = "swig";
|
||||||
@ -12,7 +21,12 @@ stdenv.mkDerivation (finalAttrs: {
|
|||||||
};
|
};
|
||||||
|
|
||||||
PCRE_CONFIG = "${pcre2.dev}/bin/pcre-config";
|
PCRE_CONFIG = "${pcre2.dev}/bin/pcre-config";
|
||||||
nativeBuildInputs = [ autoconf automake libtool bison ];
|
nativeBuildInputs = [
|
||||||
|
autoconf
|
||||||
|
automake
|
||||||
|
libtool
|
||||||
|
bison
|
||||||
|
];
|
||||||
buildInputs = [ pcre2 ];
|
buildInputs = [ pcre2 ];
|
||||||
|
|
||||||
configureFlags = [ "--without-tcl" ];
|
configureFlags = [ "--without-tcl" ];
|
||||||
|
Loading…
Reference in New Issue
Block a user