mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-22 05:33:23 +00:00
d8231a66eb
This reduces the size of closures a lot by getting rid of Glibc's header files, static libraries and utilities. For instance, the closure of GNU Hello went from 41 MiB to 22 MiB. TODO: We may want to merge back in parts of Glibc that we previously split off (such as the info files).
29 lines
770 B
Nix
29 lines
770 B
Nix
{ fetchurl, stdenv, gettext }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libelf-0.8.13";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.mr511.de/software/${name}.tar.gz";
|
|
sha256 = "0vf7s9dwk2xkmhb79aigqm0x0yfbw1j0b9ksm51207qwr179n6jr";
|
|
};
|
|
|
|
doCheck = true;
|
|
|
|
# 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.
|
|
configureFlags = stdenv.lib.optional stdenv.isDarwin "--disable-nls";
|
|
|
|
meta = {
|
|
description = "Libelf, an ELF object file access library";
|
|
|
|
homepage = http://www.mr511.de/software/english.html;
|
|
|
|
license = "LGPLv2+";
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
maintainers = [ stdenv.lib.maintainers.ludo ];
|
|
};
|
|
}
|