blob: 6bde89b7c5f1cb65f0240e6135a9a663b8076cb0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
package pkg-config {
description = "a helper tool used when compiling applications and libraries";
website = "https://pkgconfig.freedesktop.org";
anitya = 3649;
version# = "0.29.2";
source = remoteGitLab {
domain = "gitlab.freedesktop.org";
suffix = "pkg-config/pkg-config";
ref = "pkg-config-"+version;
checksum = "6UsGqEMA8EER_5b9N0b32UCqiRy39B6_RnPfvuslWhtFV1qYD4DfS10crGZN_TP2";
};
exec = make {
generate = "./autogen.sh --no-configure";
configure = {
"CFLAGS": "'-Wno-int-conversion'";
"with-internal-glib";
};
};
inputs = [
automake,
libtool,
];
}
|