2017-12-14 19:09:01 +00:00
|
|
|
{ stdenv
|
|
|
|
, fetchurl, autoreconfHook, gettext
|
2017-06-04 00:36:59 +01:00
|
|
|
}:
|
2010-04-28 13:36:58 +01:00
|
|
|
|
2013-06-11 17:39:23 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2010-04-28 13:36:58 +01:00
|
|
|
name = "libelf-0.8.13";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.mr511.de/software/${name}.tar.gz";
|
|
|
|
sha256 = "0vf7s9dwk2xkmhb79aigqm0x0yfbw1j0b9ksm51207qwr179n6jr";
|
|
|
|
};
|
|
|
|
|
2017-06-23 22:45:27 +01:00
|
|
|
patches = [
|
|
|
|
./dont-hardcode-ar.patch
|
2017-06-04 00:36:59 +01:00
|
|
|
];
|
|
|
|
|
2010-04-28 13:36:58 +01:00
|
|
|
doCheck = true;
|
2016-01-23 21:19:59 +00:00
|
|
|
|
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
|
2018-08-20 19:43:41 +01:00
|
|
|
++ stdenv.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.
|
2018-08-20 19:43:41 +01:00
|
|
|
++ stdenv.lib.optional stdenv.hostPlatform.isDarwin "--disable-nls";
|
2017-12-14 19:09:01 +00:00
|
|
|
|
|
|
|
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.
|
2018-08-20 19:43:41 +01:00
|
|
|
++ stdenv.lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) autoreconfHook;
|
2014-04-03 18:11:48 +01:00
|
|
|
|
2010-04-28 13:36:58 +01:00
|
|
|
meta = {
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "ELF object file access library";
|
2010-04-28 13:36:58 +01:00
|
|
|
|
|
|
|
homepage = http://www.mr511.de/software/english.html;
|
|
|
|
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.lgpl2Plus;
|
2010-04-28 13:36:58 +01:00
|
|
|
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
2013-08-16 22:44:33 +01:00
|
|
|
maintainers = [ ];
|
2010-04-28 13:36:58 +01:00
|
|
|
};
|
|
|
|
}
|