mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-29 06:45:54 +03:00
grafana-agent: fix rpath
The library is in the `lib` output, not `dev` output.
This commit is contained in:
parent
ad87ca737d
commit
28f04afdcc
@ -27,7 +27,7 @@ buildGoModule rec {
|
||||
# Add to RUNPATH so it can be found.
|
||||
postFixup = ''
|
||||
patchelf \
|
||||
--set-rpath "${lib.makeLibraryPath [ (lib.getDev systemd) ]}:$(patchelf --print-rpath $out/bin/agent)" \
|
||||
--set-rpath "${lib.makeLibraryPath [ (lib.getLib systemd) ]}:$(patchelf --print-rpath $out/bin/agent)" \
|
||||
$out/bin/agent
|
||||
'';
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user