2016-01-15 13:59:53 +00:00
|
|
|
{ lib, stdenv, fetchurl, m4, zlib, bzip2, bison, flex, gettext, xz }:
|
2009-02-17 16:42:51 +00:00
|
|
|
|
2012-01-05 23:15:48 +00:00
|
|
|
# TODO: Look at the hardcoded paths to kernel, modules etc.
|
2009-02-17 16:42:51 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2012-01-05 23:15:48 +00:00
|
|
|
name = "elfutils-${version}";
|
2016-01-15 13:59:53 +00:00
|
|
|
version = "0.165";
|
2013-03-17 09:26:44 +00:00
|
|
|
|
2009-02-17 16:42:51 +00:00
|
|
|
src = fetchurl {
|
2016-01-15 13:59:53 +00:00
|
|
|
url = "http://fedorahosted.org/releases/e/l/elfutils/${version}/${name}.tar.bz2";
|
|
|
|
sha256 = "0wp91hlh9n0ismikljf63558rzdwim8w1s271grsbaic35vr5z57";
|
2009-02-17 16:42:51 +00:00
|
|
|
};
|
|
|
|
|
2016-01-16 00:37:37 +00:00
|
|
|
patches = [ ./glibc-2.21.patch ];
|
|
|
|
|
2016-02-26 17:38:15 +00:00
|
|
|
hardeningDisable = [ "format" ];
|
2015-12-23 01:59:47 +00:00
|
|
|
|
2012-01-06 16:45:14 +00:00
|
|
|
# We need bzip2 in NativeInputs because otherwise we can't unpack the src,
|
|
|
|
# as the host-bzip2 will be in the path.
|
2016-01-15 13:59:53 +00:00
|
|
|
nativeBuildInputs = [ m4 bison flex gettext bzip2 ];
|
|
|
|
buildInputs = [ zlib bzip2 xz ];
|
|
|
|
|
|
|
|
configureFlags =
|
|
|
|
[ "--program-prefix=eu-" # prevent collisions with binutils
|
|
|
|
"--enable-deterministic-archives"
|
|
|
|
];
|
2012-01-06 16:45:14 +00:00
|
|
|
|
2016-01-15 13:59:53 +00:00
|
|
|
enableParallelBuilding = true;
|
2013-04-05 23:45:25 +01:00
|
|
|
|
2012-01-06 16:45:14 +00:00
|
|
|
crossAttrs = {
|
|
|
|
|
2013-04-05 23:45:25 +01:00
|
|
|
/* Having bzip2 will harm, because anything using elfutils
|
2012-01-06 16:45:14 +00:00
|
|
|
as buildInput cross-building, will not be able to run 'bzip2' */
|
2012-12-28 18:08:19 +00:00
|
|
|
propagatedBuildInputs = [ zlib.crossDrv ];
|
2012-01-06 16:45:14 +00:00
|
|
|
|
|
|
|
# This program does not cross-build fine. So I only cross-build some parts
|
|
|
|
# I need for the linux perf tool.
|
|
|
|
# On the awful cross-building:
|
|
|
|
# http://comments.gmane.org/gmane.comp.sysutils.elfutils.devel/2005
|
|
|
|
#
|
|
|
|
# I wrote this testing for the nanonote.
|
|
|
|
buildPhase = ''
|
|
|
|
pushd libebl
|
|
|
|
make
|
|
|
|
popd
|
|
|
|
pushd libelf
|
|
|
|
make
|
|
|
|
popd
|
|
|
|
pushd libdwfl
|
|
|
|
make
|
|
|
|
popd
|
|
|
|
pushd libdw
|
|
|
|
make
|
|
|
|
popd
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
pushd libelf
|
|
|
|
make install
|
|
|
|
popd
|
2012-01-06 21:10:19 +00:00
|
|
|
pushd libdwfl
|
|
|
|
make install
|
|
|
|
popd
|
2012-01-06 16:45:14 +00:00
|
|
|
pushd libdw
|
|
|
|
make install
|
|
|
|
popd
|
|
|
|
cp version.h $out/include
|
|
|
|
'';
|
|
|
|
};
|
2013-04-05 23:45:25 +01:00
|
|
|
|
2009-02-17 16:42:51 +00:00
|
|
|
meta = {
|
|
|
|
homepage = https://fedorahosted.org/elfutils/;
|
2016-01-15 13:59:53 +00:00
|
|
|
description = "A set of utilities to handle ELF objects";
|
|
|
|
platforms = lib.platforms.linux;
|
|
|
|
license = lib.licenses.gpl3;
|
|
|
|
maintainers = lib.maintainers.eelco;
|
2009-02-17 16:42:51 +00:00
|
|
|
};
|
|
|
|
}
|