Skip to content

Commit 71a7e22

Browse files
committedMay 18, 2017
treewide: fixup packages with RPATH problems
1 parent 2b5b38a commit 71a7e22

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed
 

‎pkgs/development/libraries/accounts-qt/default.nix

+3
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ stdenv.mkDerivation rec {
1818
qmakeFlags="$qmakeFlags LIBDIR=$out/lib CMAKE_CONFIG_PATH=$out/lib/cmake"
1919
'';
2020

21+
# Hack to avoid TMPDIR in RPATHs.
22+
preFixup = ''rm -rf "$(pwd)" '';
23+
2124
meta = with stdenv.lib; {
2225
description = "Qt library for accessing the online accounts database";
2326
homepage = "http://code.google.com/p/accounts-sso/";

‎pkgs/development/libraries/libcommuni/default.nix

+3
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ stdenv.mkDerivation rec {
2525

2626
doCheck = true;
2727

28+
# Hack to avoid TMPDIR in RPATHs.
29+
preFixup = ''rm -rf "$(pwd)" '';
30+
2831
meta = with stdenv.lib; {
2932
description = "A cross-platform IRC framework written with Qt";
3033
homepage = https://communi.github.io;

‎pkgs/development/libraries/libdwg/default.nix

+3
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ stdenv.mkDerivation {
1212

1313
hardeningDisable = [ "format" ];
1414

15+
# Hack to avoid TMPDIR in RPATHs.
16+
preFixup = ''rm -rf "$(pwd)" '';
17+
1518
meta = {
1619
description = "Library reading dwg files";
1720
homepage = http://libdwg.sourceforge.net/en/;

0 commit comments

Comments
 (0)
Please sign in to comment.