core/pkgs/by-name/pk/pkg-config/default.nix

68 lines
2.1 KiB
Nix
Raw Normal View History

2024-05-02 00:46:19 +00:00
{ lib, stdenv, fetchurl, libiconv, vanilla ? false }:
stdenv.mkDerivation rec {
pname = "pkg-config";
version = "0.29.2";
src = fetchurl {
2024-05-13 21:24:10 +00:00
url =
"https://pkg-config.freedesktop.org/releases/${pname}-${version}.tar.gz";
2024-05-02 00:46:19 +00:00
sha256 = "14fmwzki1rlz8bs2p810lk6jqdxsk966d8drgsjmi54cd00rrikg";
};
outputs = [ "out" "man" "doc" ];
strictDeps = true;
# Process Requires.private properly, see
# http://bugs.freedesktop.org/show_bug.cgi?id=4738, migrated to
# https://gitlab.freedesktop.org/pkg-config/pkg-config/issues/28
patches = lib.optional (!vanilla) ./requires-private.patch
++ lib.optional stdenv.isCygwin ./2.36.3-not-win32.patch;
# These three tests fail due to a (desired) behavior change from our ./requires-private.patch
2024-05-13 21:24:10 +00:00
postPatch = if vanilla then
null
else ''
2024-05-02 00:46:19 +00:00
rm -f check/check-requires-private check/check-gtk check/missing
'';
buildInputs = [ libiconv ];
configureFlags = [ "--with-internal-glib" ]
2024-05-13 21:24:10 +00:00
++ lib.optionals (stdenv.isSunOS) [
"--with-libiconv=gnu"
"--with-system-library-path"
"--with-system-include-path"
"CFLAGS=-DENABLE_NLS"
]
# Can't run these tests while cross-compiling
++ lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
"glib_cv_stack_grows=no"
"glib_cv_uscore=no"
"ac_cv_func_posix_getpwuid_r=yes"
"ac_cv_func_posix_getgrgid_r=yes"
];
2024-05-02 00:46:19 +00:00
env.NIX_CFLAGS_COMPILE = toString (
# Silence "incompatible integer to pointer conversion passing 'gsize'" when building with Clang.
2024-05-13 21:24:10 +00:00
lib.optionals stdenv.cc.isClang [
"-Wno-int-conversion"
]
2024-05-02 00:46:19 +00:00
# Silence fprintf format errors when building for Windows.
2024-05-13 21:24:10 +00:00
++ lib.optionals stdenv.hostPlatform.isWindows [ "-Wno-error=format" ]);
2024-05-02 00:46:19 +00:00
enableParallelBuilding = true;
doCheck = true;
postInstall = ''rm -f "$out"/bin/*-pkg-config''; # clean the duplicate file
meta = with lib; {
2024-05-13 21:24:10 +00:00
description =
"A tool that allows packages to find out information about other packages";
2024-05-02 00:46:19 +00:00
homepage = "http://pkg-config.freedesktop.org/wiki/";
platforms = platforms.all;
license = licenses.gpl2Plus;
mainProgram = "pkg-config";
};
}