caac26618a
Signed-off-by: Connor Baker <ConnorBaker01@gmail.com>
16 lines
327 B
Nix
16 lines
327 B
Nix
{
|
|
callPackages,
|
|
isDeclaredArray,
|
|
makeSetupHook,
|
|
patchelf,
|
|
}:
|
|
makeSetupHook {
|
|
name = "getRunpathEntries";
|
|
propagatedBuildInputs = [
|
|
isDeclaredArray
|
|
patchelf
|
|
];
|
|
passthru.tests = callPackages ./tests.nix { };
|
|
meta.description = "Appends runpath entries of a file to an array";
|
|
} ./getRunpathEntries.bash
|