2015-01-25 12:52:09 -08:00
|
|
|
{ fetchurl, stdenv, gettext, glibc }:
|
2010-04-28 05:36:58 -07:00
|
|
|
|
2013-06-11 09:39:23 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2010-04-28 05:36:58 -07:00
|
|
|
name = "libelf-0.8.13";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.mr511.de/software/${name}.tar.gz";
|
|
|
|
sha256 = "0vf7s9dwk2xkmhb79aigqm0x0yfbw1j0b9ksm51207qwr179n6jr";
|
|
|
|
};
|
|
|
|
|
|
|
|
doCheck = true;
|
2016-01-23 13:19:59 -08:00
|
|
|
|
2016-02-22 10:32:53 -08:00
|
|
|
# FIXME needs gcc 4.9 in bootstrap tools
|
2016-02-26 09:38:15 -08:00
|
|
|
hardeningDisable = [ "stackprotector" ];
|
2016-02-22 10:32:53 -08:00
|
|
|
|
2015-01-25 12:52:09 -08:00
|
|
|
# For cross-compiling, native glibc is needed for the "gencat" program.
|
|
|
|
crossAttrs = {
|
2016-06-01 13:00:28 -07:00
|
|
|
nativeBuildInputs = [ gettext glibc ];
|
2015-01-25 12:52:09 -08:00
|
|
|
};
|
2010-04-28 05:36:58 -07:00
|
|
|
|
2013-06-11 09:39:23 -07: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.
|
|
|
|
configureFlags = stdenv.lib.optional stdenv.isDarwin "--disable-nls";
|
|
|
|
|
2016-06-01 13:00:28 -07:00
|
|
|
nativeBuildInputs = [ gettext ];
|
2014-04-03 10:11:48 -07:00
|
|
|
|
2010-04-28 05:36:58 -07:00
|
|
|
meta = {
|
2014-08-24 07:21:08 -07:00
|
|
|
description = "ELF object file access library";
|
2010-04-28 05:36:58 -07:00
|
|
|
|
|
|
|
homepage = http://www.mr511.de/software/english.html;
|
|
|
|
|
2014-06-18 21:19:00 -07:00
|
|
|
license = stdenv.lib.licenses.lgpl2Plus;
|
2010-04-28 05:36:58 -07:00
|
|
|
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
2013-08-16 14:44:33 -07:00
|
|
|
maintainers = [ ];
|
2010-04-28 05:36:58 -07:00
|
|
|
};
|
|
|
|
}
|