We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Learn more about funding links in repositories.
Report abuse
1 parent 349a092 commit efeef04Copy full SHA for efeef04
pkgs/development/libraries/appstream-glib/default.nix
@@ -28,7 +28,11 @@ in stdenv.mkDerivation rec {
28
propagatedBuildInputs = [ gtk3 ];
29
mesonFlags = [ "-Denable-rpm=false" "-Denable-stemmer=false" "-Denable-dep11=false" ];
30
31
- postFixup = "patchelf --set-rpath ${rpath} $out/lib/libappstream-glib.so";
+ postFixup = ''
32
+ for elf in "$out"/bin/* "$out"/lib/*.so; do
33
+ patchelf --set-rpath '${rpath}':"$out/lib" "$elf"
34
+ done
35
+ '';
36
37
meta = with stdenv.lib; {
38
description = "Objects and helper methods to read and write AppStream metadata";
🤦♂️ thanks
1 commit comments
shlevy commentedon Sep 13, 2017
🤦♂️ thanks