nixpkgs/pkgs/development/libraries/libelf/default.nix

48 lines
1.5 KiB
Nix
Raw Normal View History

{ stdenv
, fetchurl, autoreconfHook, gettext
2017-06-03 23:36:59 +00:00
}:
stdenv.mkDerivation rec {
name = "libelf-0.8.13";
src = fetchurl {
2019-07-30 00:41:28 +00:00
url = "https://fossies.org/linux/misc/old/${name}.tar.gz";
sha256 = "0vf7s9dwk2xkmhb79aigqm0x0yfbw1j0b9ksm51207qwr179n6jr";
};
patches = [
./dont-hardcode-ar.patch
# Fix warnings from preprocessor instructions.
# https://github.com/NixOS/nixpkgs/issues/59929
./preprocessor-warnings.patch
2017-06-03 23:36:59 +00:00
];
doCheck = true;
2016-01-23 21:19:59 +00:00
configureFlags = []
# Configure check for dynamic lib support is broken, see
# http://lists.uclibc.org/pipermail/uclibc-cvs/2005-August/019383.html
++ stdenv.lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) "mr_cv_target_elf=yes"
# Libelf's custom NLS macros fail to determine the catalog file extension
# on Darwin, so disable NLS for now.
++ stdenv.lib.optional stdenv.hostPlatform.isDarwin "--disable-nls";
nativeBuildInputs = [ gettext ]
# Need to regenerate configure script with newer version in order to pass
# "mr_cv_target_elf=yes", 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.
++ stdenv.lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) autoreconfHook;
2014-04-03 17:11:48 +00:00
meta = {
description = "ELF object file access library";
homepage = https://github.com/Distrotech/libelf;
license = stdenv.lib.licenses.lgpl2Plus;
platforms = stdenv.lib.platforms.all;
2013-08-16 21:44:33 +00:00
maintainers = [ ];
};
}