core/pkgs/by-name/el/elf-header/packages.nix
2024-05-13 22:24:10 +01:00

10 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 ./. { };
}