about summary refs log tree commit diff
path: root/pkgs/tools/system
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2019-01-06 12:14:52 +0100
committerVladimír Čunát <vcunat@gmail.com>2019-01-06 12:14:52 +0100
commit10a12194e301f2ad3ff6899e022afa96af0610c8 (patch)
tree9c33b65e84504d37635d942a91bc5aa0b075058d /pkgs/tools/system
parent5489e49ebb5cb9b973133fcd70d3196fb12acc0b (diff)
parent981b504ecddd981488578494304d141849697dba (diff)
downloadnixlib-10a12194e301f2ad3ff6899e022afa96af0610c8.tar
nixlib-10a12194e301f2ad3ff6899e022afa96af0610c8.tar.gz
nixlib-10a12194e301f2ad3ff6899e022afa96af0610c8.tar.bz2
nixlib-10a12194e301f2ad3ff6899e022afa96af0610c8.tar.lz
nixlib-10a12194e301f2ad3ff6899e022afa96af0610c8.tar.xz
nixlib-10a12194e301f2ad3ff6899e022afa96af0610c8.tar.zst
nixlib-10a12194e301f2ad3ff6899e022afa96af0610c8.zip
Merge #53490: fix treewide linking errors after #51770
Issue #53001.  This might not be all of them, but let's not wait.
Diffstat (limited to 'pkgs/tools/system')
-rw-r--r--pkgs/tools/system/gdmap/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/tools/system/gdmap/default.nix b/pkgs/tools/system/gdmap/default.nix
index 72938216b0a4..0c254bb28545 100644
--- a/pkgs/tools/system/gdmap/default.nix
+++ b/pkgs/tools/system/gdmap/default.nix
@@ -15,6 +15,10 @@ stdenv.mkDerivation rec {
 
   hardeningDisable = [ "format" ];
 
+  NIX_LDFLAGS = [
+    "-lm"
+  ];
+
   meta = with stdenv.lib; {
     homepage = http://gdmap.sourceforge.net;
     description = "Recursive rectangle map of disk usage";