Files
nixpkgs/pkgs/development/libraries/libelf/default.nix
T

42 lines
1.0 KiB
Nix
Raw Normal View History

2017-06-03 19:36:59 -04:00
{ stdenv, fetchurl
, gettext, glibc
, buildPlatform, hostPlatform
}:
2010-04-28 12:36:58 +00:00
2013-06-11 18:39:23 +02:00
stdenv.mkDerivation rec {
2010-04-28 12:36:58 +00:00
name = "libelf-0.8.13";
src = fetchurl {
url = "http://www.mr511.de/software/${name}.tar.gz";
sha256 = "0vf7s9dwk2xkmhb79aigqm0x0yfbw1j0b9ksm51207qwr179n6jr";
};
2017-06-03 19:36:59 -04:00
# TODO(@Ericson2314) Make unconditional next hash break
patches = if hostPlatform == buildPlatform then null else [
./cross-ar.patch
];
2010-04-28 12:36:58 +00:00
doCheck = true;
2016-01-23 21:19:59 +00:00
# FIXME needs gcc 4.9 in bootstrap tools
2016-02-26 18:38:15 +01:00
hardeningDisable = [ "stackprotector" ];
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-03 19:36:59 -04:00
configureFlags = stdenv.lib.optional hostPlatform.isDarwin "--disable-nls";
2013-06-11 18:39:23 +02:00
2016-06-01 23:00:28 +03:00
nativeBuildInputs = [ gettext ];
2014-04-03 19:11:48 +02:00
2010-04-28 12:36:58 +00:00
meta = {
2014-08-24 16:21:08 +02:00
description = "ELF object file access library";
2010-04-28 12:36:58 +00:00
homepage = http://www.mr511.de/software/english.html;
license = stdenv.lib.licenses.lgpl2Plus;
2010-04-28 12:36:58 +00:00
platforms = stdenv.lib.platforms.all;
2013-08-16 23:44:33 +02:00
maintainers = [ ];
2010-04-28 12:36:58 +00:00
};
}