tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
swig: format with `nixfmt-rfc-style`
Emily
2 years ago
e3360d74
44e6a145
+16
-2
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
sw
swig
package.nix
+16
-2
pkgs/by-name/sw/swig/package.nix
reviewed
···
1
1
-
{ lib, stdenv, fetchFromGitHub, autoconf, automake, libtool, bison, pcre2 }:
1
1
+
{
2
2
+
lib,
3
3
+
stdenv,
4
4
+
fetchFromGitHub,
5
5
+
autoconf,
6
6
+
automake,
7
7
+
libtool,
8
8
+
bison,
9
9
+
pcre2,
10
10
+
}:
2
11
3
12
stdenv.mkDerivation (finalAttrs: {
4
13
pname = "swig";
···
12
21
};
13
22
14
23
PCRE_CONFIG = "${pcre2.dev}/bin/pcre-config";
15
15
-
nativeBuildInputs = [ autoconf automake libtool bison ];
24
24
+
nativeBuildInputs = [
25
25
+
autoconf
26
26
+
automake
27
27
+
libtool
28
28
+
bison
29
29
+
];
16
30
buildInputs = [ pcre2 ];
17
31
18
32
configureFlags = [ "--without-tcl" ];