Skip to content

Commit

Permalink
treewide: fixup packages with RPATH problems
Browse files Browse the repository at this point in the history
  • Loading branch information
vcunat committed May 18, 2017
1 parent 2b5b38a commit 71a7e22
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pkgs/development/libraries/accounts-qt/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ stdenv.mkDerivation rec {
qmakeFlags="$qmakeFlags LIBDIR=$out/lib CMAKE_CONFIG_PATH=$out/lib/cmake"
'';

# Hack to avoid TMPDIR in RPATHs.
preFixup = ''rm -rf "$(pwd)" '';

meta = with stdenv.lib; {
description = "Qt library for accessing the online accounts database";
homepage = "http://code.google.com/p/accounts-sso/";
Expand Down
3 changes: 3 additions & 0 deletions pkgs/development/libraries/libcommuni/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ stdenv.mkDerivation rec {

doCheck = true;

# Hack to avoid TMPDIR in RPATHs.
preFixup = ''rm -rf "$(pwd)" '';

meta = with stdenv.lib; {
description = "A cross-platform IRC framework written with Qt";
homepage = https://communi.github.io;
Expand Down
3 changes: 3 additions & 0 deletions pkgs/development/libraries/libdwg/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ stdenv.mkDerivation {

hardeningDisable = [ "format" ];

# Hack to avoid TMPDIR in RPATHs.
preFixup = ''rm -rf "$(pwd)" '';

meta = {
description = "Library reading dwg files";
homepage = http://libdwg.sourceforge.net/en/;
Expand Down

0 comments on commit 71a7e22

Please sign in to comment.