bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
29 lines
437 B
Nix
29 lines
437 B
Nix
{
|
|
mkDerivation,
|
|
lib,
|
|
bsdSetupHook,
|
|
freebsdSetupHook,
|
|
makeMinimal,
|
|
install,
|
|
m4,
|
|
}:
|
|
mkDerivation {
|
|
path = "lib/libelf";
|
|
extraPaths = [
|
|
"lib/libc"
|
|
"contrib/elftoolchain"
|
|
"sys/sys/elf32.h"
|
|
"sys/sys/elf64.h"
|
|
"sys/sys/elf_common.h"
|
|
];
|
|
buildInputs = [ ];
|
|
nativeBuildInputs = [
|
|
bsdSetupHook
|
|
freebsdSetupHook
|
|
makeMinimal
|
|
install
|
|
m4
|
|
];
|
|
|
|
meta.platforms = lib.platforms.freebsd;
|
|
}
|