2015-01-25 20:52:09 +00:00
|
|
|
{ fetchurl, stdenv, gettext, glibc }:
|
2010-04-28 13:36:58 +01:00
|
|
|
|
2011-01-27 09:50:44 +00: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";
|
|
|
|
};
|
|
|
|
|
|
|
|
doCheck = true;
|
2015-01-25 20:52:09 +00:00
|
|
|
|
|
|
|
# For cross-compiling, native glibc is needed for the "gencat" program.
|
|
|
|
crossAttrs = {
|
|
|
|
nativeBuildInputs = [ glibc ];
|
|
|
|
};
|
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
|
|
|
};
|
|
|
|
}
|
2011-01-27 09:50:44 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
|
2011-07-21 14:51:03 +01:00
|
|
|
# Libelf's custom NLS macros fail to determine the catalog file extension on
|
|
|
|
# Darwin, so disable NLS for now.
|
2011-01-27 09:50:44 +00:00
|
|
|
# FIXME: Eventually make Gettext a build input on all platforms.
|
|
|
|
(if stdenv.isDarwin
|
2011-07-21 14:51:03 +01:00
|
|
|
then { configureFlags = [ "--disable-nls" ]; }
|
2011-01-27 09:50:44 +00:00
|
|
|
else { }))
|