mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
15 lines
271 B
Nix
15 lines
271 B
Nix
{
|
|
lib,
|
|
addDriverRunpath,
|
|
autoFixElfFiles,
|
|
makeSetupHook,
|
|
}:
|
|
|
|
makeSetupHook {
|
|
name = "auto-add-driver-runpath-hook";
|
|
propagatedBuildInputs = [
|
|
addDriverRunpath
|
|
autoFixElfFiles
|
|
];
|
|
meta.license = lib.licenses.mit;
|
|
} ./auto-add-driver-runpath-hook.sh
|