14 lines
229 B
Nix
14 lines
229 B
Nix
|
|
{
|
||
|
|
addDriverRunpath,
|
||
|
|
autoFixElfFiles,
|
||
|
|
makeSetupHook,
|
||
|
|
}:
|
||
|
|
|
||
|
|
makeSetupHook {
|
||
|
|
name = "auto-add-driver-runpath-hook";
|
||
|
|
propagatedBuildInputs = [
|
||
|
|
addDriverRunpath
|
||
|
|
autoFixElfFiles
|
||
|
|
];
|
||
|
|
} ./auto-add-driver-runpath-hook.sh
|