Files
nixpkgs/pkgs/build-support/setup-hooks/arrayUtilities/getRunpathEntries/package.nix
2026-05-25 13:48:20 +02:00

20 lines
379 B
Nix

{
lib,
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";
license = lib.licenses.mit;
};
} ./getRunpathEntries.bash