blob: 8214a85052f2b117403d7320d25e942fd43c940f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{
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
|