summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2017-05-26 15:42:47 +0200
committerVladimír Čunát <vcunat@gmail.com>2017-05-26 15:45:43 +0200
commit00672dec8a1367a1d559660aa7a125b31f3f6562 (patch)
treecf10194cc5aafae004499df5ce1ad28eb3123c2f /pkgs/applications
parent574e4e296f16939edfd2d4f1b2ea453c5c341927 (diff)
parentb7fed33057e29fa0d5ab4921598d037c040baae6 (diff)
downloadnixlib-00672dec8a1367a1d559660aa7a125b31f3f6562.tar
nixlib-00672dec8a1367a1d559660aa7a125b31f3f6562.tar.gz
nixlib-00672dec8a1367a1d559660aa7a125b31f3f6562.tar.bz2
nixlib-00672dec8a1367a1d559660aa7a125b31f3f6562.tar.lz
nixlib-00672dec8a1367a1d559660aa7a125b31f3f6562.tar.xz
nixlib-00672dec8a1367a1d559660aa7a125b31f3f6562.tar.zst
nixlib-00672dec8a1367a1d559660aa7a125b31f3f6562.zip
Merge older staging
This still causes some uncached rebuilds, but master(!) and staging
move too fast forward rebuild-wise, so Hydra might never catch up.
(There are also other occasional problems.)
Therefore I merge at this point where the rebuild isn't that bad.
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/science/math/calc/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/applications/science/math/calc/default.nix b/pkgs/applications/science/math/calc/default.nix
index 19f769e4365c..b8ed7ffac3cd 100644
--- a/pkgs/applications/science/math/calc/default.nix
+++ b/pkgs/applications/science/math/calc/default.nix
@@ -34,6 +34,9 @@ stdenv.mkDerivation rec {
     wrapProgram $out/bin/calc --prefix LD_LIBRARY_PATH : $out/lib
   '';
 
+  # Hack to avoid TMPDIR in RPATHs.
+  preFixup = ''rm -rf "$(pwd)" '';
+
   meta = {
     description = "C-style arbitrary precision calculator";
     homepage = http://www.isthe.com/chongo/tech/comp/calc/;