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