2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv
|
2023-01-14 19:22:20 +00:00
|
|
|
, fetchurl, autoreconfHook, gettext, freebsd, netbsd
|
2017-06-03 23:36:59 +00:00
|
|
|
}:
|
2010-04-28 12:36:58 +00:00
|
|
|
|
2020-06-26 20:44:45 +00:00
|
|
|
# Note: this package is used for bootstrapping fetchurl, and thus
|
|
|
|
# cannot use fetchpatch! All mutable patches (generated by GitHub or
|
|
|
|
# cgit) that are needed here should be included directly in Nixpkgs as
|
|
|
|
# files.
|
|
|
|
|
2013-06-11 16:39:23 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2021-06-20 14:15:21 +00:00
|
|
|
pname = "libelf";
|
|
|
|
version = "0.8.13";
|
2010-04-28 12:36:58 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-06-20 14:15:21 +00:00
|
|
|
url = "https://fossies.org/linux/misc/old/${pname}-${version}.tar.gz";
|
2010-04-28 12:36:58 +00:00
|
|
|
sha256 = "0vf7s9dwk2xkmhb79aigqm0x0yfbw1j0b9ksm51207qwr179n6jr";
|
|
|
|
};
|
|
|
|
|
2017-06-23 21:45:27 +00:00
|
|
|
patches = [
|
|
|
|
./dont-hardcode-ar.patch
|
2019-06-15 16:52:00 +00:00
|
|
|
# Fix warnings from preprocessor instructions.
|
|
|
|
# https://github.com/NixOS/nixpkgs/issues/59929
|
|
|
|
./preprocessor-warnings.patch
|
2023-06-01 23:22:00 +00:00
|
|
|
# `configure` defines a test `main` with an implicit `int` return, which clang 16 disallows.
|
|
|
|
./fix-configure-main.patch
|
2017-06-03 23:36:59 +00:00
|
|
|
];
|
|
|
|
|
2022-05-14 01:13:49 +00:00
|
|
|
enableParallelBuilding = true;
|
2023-03-27 09:07:01 +00:00
|
|
|
# Lacks dependencies:
|
|
|
|
# mkdir ...-libelf-0.8.13/lib
|
|
|
|
# mkdir ...-libelf-0.8.13/lib
|
|
|
|
# mkdir: cannot create directory '...-libelf-0.8.13/lib': File exists
|
|
|
|
enableParallelInstalling = false;
|
2022-05-14 01:13:49 +00:00
|
|
|
|
2010-04-28 12:36:58 +00:00
|
|
|
doCheck = true;
|
2016-01-23 21:19:59 +00:00
|
|
|
|
2022-09-29 13:49:22 +00:00
|
|
|
preConfigure = if !stdenv.hostPlatform.useAndroidPrebuilt then null else ''
|
2022-09-23 14:10:42 +00:00
|
|
|
sed -i 's|DISTSUBDIRS = lib po|DISTSUBDIRS = lib|g' Makefile.in
|
|
|
|
sed -i 's|SUBDIRS = lib @POSUB@|SUBDIRS = lib|g' Makefile.in
|
|
|
|
'';
|
|
|
|
|
2017-12-14 19:09:01 +00:00
|
|
|
configureFlags = []
|
|
|
|
# Configure check for dynamic lib support is broken, see
|
|
|
|
# http://lists.uclibc.org/pipermail/uclibc-cvs/2005-August/019383.html
|
2021-01-21 17:00:13 +00:00
|
|
|
++ lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) "mr_cv_target_elf=yes"
|
2017-12-14 19:09:01 +00:00
|
|
|
# Libelf's custom NLS macros fail to determine the catalog file extension
|
|
|
|
# on Darwin, so disable NLS for now.
|
2021-01-21 17:00:13 +00:00
|
|
|
++ lib.optional stdenv.hostPlatform.isDarwin "--disable-nls";
|
2017-12-14 19:09:01 +00:00
|
|
|
|
2022-05-21 16:58:22 +00:00
|
|
|
strictDeps = true;
|
2021-06-07 14:31:49 +00:00
|
|
|
nativeBuildInputs =
|
2023-01-14 19:22:20 +00:00
|
|
|
(if stdenv.hostPlatform.isFreeBSD then [ freebsd.gencat ]
|
|
|
|
else if stdenv.hostPlatform.isNetBSD then [ netbsd.gencat ]
|
|
|
|
else [ gettext ])
|
2017-12-14 19:09:01 +00:00
|
|
|
# Need to regenerate configure script with newer version in order to pass
|
2023-01-14 19:22:20 +00:00
|
|
|
# "mr_cv_target_elf=yes" and determine integer sizes correctly when
|
|
|
|
# cross-compiling, but `autoreconfHook` brings in `makeWrapper` which
|
|
|
|
# doesn't work with the bootstrapTools bash, so can only do this for
|
|
|
|
# cross builds when `stdenv.shell` is a newer bash.
|
2023-06-01 23:22:00 +00:00
|
|
|
++ lib.optional (stdenv.hostPlatform != stdenv.buildPlatform
|
|
|
|
# The provided `configure` script fails on clang 16 because some tests have a `main`
|
|
|
|
# returning an implicit `int`, which clang 16 treats as an error. Running `autoreconf` fixes
|
|
|
|
# the test and allows `configure` to detect clang properly.
|
|
|
|
# This is done only for clang on Darwin because the Darwin stdenv bootstrap does not use
|
|
|
|
# libelf, so should be safe because it will always be run with a compatible version of bash.
|
|
|
|
|| (stdenv.cc.isClang && stdenv.isDarwin)) autoreconfHook;
|
2014-04-03 17:11:48 +00:00
|
|
|
|
2010-04-28 12:36:58 +00:00
|
|
|
meta = {
|
2014-08-24 14:21:08 +00:00
|
|
|
description = "ELF object file access library";
|
2010-04-28 12:36:58 +00:00
|
|
|
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/Distrotech/libelf";
|
2010-04-28 12:36:58 +00:00
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
license = lib.licenses.lgpl2Plus;
|
2010-04-28 12:36:58 +00:00
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
platforms = lib.platforms.all;
|
2013-08-16 21:44:33 +00:00
|
|
|
maintainers = [ ];
|
2010-04-28 12:36:58 +00:00
|
|
|
};
|
|
|
|
}
|