mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 00:24:18 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
110 lines
2.7 KiB
Nix
110 lines
2.7 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchpatch,
|
|
fetchFromGitHub,
|
|
autoreconfHook,
|
|
buildPackages,
|
|
xz,
|
|
testers,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "libunwind";
|
|
version = "1.8.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "libunwind";
|
|
repo = "libunwind";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-rCFBHs6rCSnp5FEwbUR5veNNTqSQpFblAv8ebSPX0qE=";
|
|
};
|
|
|
|
patches = lib.optional (stdenv.targetPlatform.useLLVM or false) (fetchpatch {
|
|
url = "https://github.com/libunwind/libunwind/pull/770/commits/a69d0f14c9e6c46e82ba6e02fcdedb2eb63b7f7f.patch";
|
|
hash = "sha256-9oBZimCXonNN++jJs3emp9w+q1aj3eNzvSKPgh92itA=";
|
|
});
|
|
|
|
postPatch =
|
|
if (stdenv.cc.isClang || stdenv.hostPlatform.isStatic) then
|
|
''
|
|
substituteInPlace configure.ac --replace "-lgcc_s" ""
|
|
''
|
|
else
|
|
lib.optionalString stdenv.hostPlatform.isMusl ''
|
|
substituteInPlace configure.ac --replace "-lgcc_s" "-lgcc_eh"
|
|
'';
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
outputs = [
|
|
"out"
|
|
"dev"
|
|
"devman"
|
|
];
|
|
|
|
configureFlags =
|
|
[
|
|
# Starting from 1.8.1 libunwind installs testsuite by default.
|
|
# As we don't run the tests we disable it (this also fixes circular
|
|
# reference install failure).
|
|
"--disable-tests"
|
|
# Without latex2man, no man pages are installed despite being
|
|
# prebuilt in the source tarball.
|
|
"LATEX2MAN=${buildPackages.coreutils}/bin/true"
|
|
]
|
|
# See https://github.com/libunwind/libunwind/issues/693
|
|
++ lib.optionals (with stdenv.hostPlatform; isAarch64 && isMusl && !isStatic) [
|
|
"CFLAGS=-mno-outline-atomics"
|
|
];
|
|
|
|
propagatedBuildInputs = [ xz ];
|
|
|
|
postInstall = ''
|
|
find $out -name \*.la | while read file; do
|
|
sed -i 's,-llzma,${xz.out}/lib/liblzma.la,' $file
|
|
done
|
|
'';
|
|
|
|
doCheck = false; # fails
|
|
|
|
passthru.tests.pkg-config = testers.hasPkgConfigModules {
|
|
package = finalAttrs.finalPackage;
|
|
versionCheck = true;
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.nongnu.org/libunwind";
|
|
description = "Portable and efficient API to determine the call-chain of a program";
|
|
maintainers = with maintainers; [ orivej ];
|
|
pkgConfigModules = [
|
|
"libunwind"
|
|
"libunwind-coredump"
|
|
"libunwind-generic"
|
|
"libunwind-ptrace"
|
|
"libunwind-setjmp"
|
|
];
|
|
# https://github.com/libunwind/libunwind#libunwind
|
|
platforms = [
|
|
"aarch64-linux"
|
|
"armv5tel-linux"
|
|
"armv6l-linux"
|
|
"armv7a-linux"
|
|
"armv7l-linux"
|
|
"i686-freebsd"
|
|
"i686-linux"
|
|
"loongarch64-linux"
|
|
"mips64el-linux"
|
|
"mipsel-linux"
|
|
"powerpc64-linux"
|
|
"powerpc64le-linux"
|
|
"riscv64-linux"
|
|
"s390x-linux"
|
|
"x86_64-freebsd"
|
|
"x86_64-linux"
|
|
"x86_64-solaris"
|
|
];
|
|
license = licenses.mit;
|
|
};
|
|
})
|