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

38 lines
880 B
Nix
Raw Normal View History

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