2017-06-04 00:36:59 +01:00
|
|
|
{ stdenv, fetchurl
|
|
|
|
, gettext, glibc
|
|
|
|
, buildPlatform, hostPlatform
|
|
|
|
}:
|
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-04 00:36:59 +01:00
|
|
|
# TODO(@Ericson2314) Make unconditional next hash break
|
|
|
|
patches = if hostPlatform == buildPlatform then null else [
|
|
|
|
./cross-ar.patch
|
|
|
|
];
|
|
|
|
|
2010-04-28 13:36:58 +01:00
|
|
|
doCheck = true;
|
2016-01-23 21:19:59 +00:00
|
|
|
|
2016-02-22 18:32:53 +00:00
|
|
|
# FIXME needs gcc 4.9 in bootstrap tools
|
2016-02-26 17:38:15 +00:00
|
|
|
hardeningDisable = [ "stackprotector" ];
|
2016-02-22 18:32:53 +00:00
|
|
|
|
2013-06-11 17:39:23 +01:00
|
|
|
# Libelf's custom NLS macros fail to determine the catalog file extension on
|
|
|
|
# Darwin, so disable NLS for now.
|
|
|
|
# FIXME: Eventually make Gettext a build input on all platforms.
|
2017-06-04 00:36:59 +01:00
|
|
|
configureFlags = stdenv.lib.optional hostPlatform.isDarwin "--disable-nls";
|
2013-06-11 17:39:23 +01:00
|
|
|
|
2016-06-01 21:00:28 +01:00
|
|
|
nativeBuildInputs = [ gettext ];
|
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
|
|
|
};
|
|
|
|
}
|