freebsd.libdl: init

This commit is contained in:
Audrey Dutcher 2024-05-27 12:37:37 -07:00
parent a753d385da
commit ae993bd1e3

View File

@ -0,0 +1,9 @@
{ mkDerivation, ... }:
mkDerivation {
path = "lib/libdl";
extraPaths = [
"lib/libc"
"libexec/rtld-elf"
];
buildInputs = [ ];
}