core/pkgs/by-name/el/elf-header/packages.nix
2024-05-13 11:34:52 -04:00

11 lines
242 B
Nix

{ ... }:
res: pkgs: super:
with pkgs;
{
# Provided by libc on Operating Systems that use the Extensible Linker Format.
elf-header = if stdenv.hostPlatform.isElf then null else elf-header-real;
elf-header-real = callPackage ./. { };
}