summary refs log tree commit diff
path: root/pkgs/development/libraries/libexecinfo
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2018-02-13 11:05:49 -0600
committerWill Dietz <w@wdtz.org>2018-02-13 11:06:56 -0600
commit2bfe036f42a3e71a6577a899f46d075ea55e2704 (patch)
treef94a60f65f53c9ff9dd6ff8e6b8204aa6efe44d4 /pkgs/development/libraries/libexecinfo
parent7f3527d33f19150dff5cfc9d6dbef51532a78da2 (diff)
downloadnixpkgs-2bfe036f42a3e71a6577a899f46d075ea55e2704.tar
nixpkgs-2bfe036f42a3e71a6577a899f46d075ea55e2704.tar.gz
nixpkgs-2bfe036f42a3e71a6577a899f46d075ea55e2704.tar.bz2
nixpkgs-2bfe036f42a3e71a6577a899f46d075ea55e2704.tar.lz
nixpkgs-2bfe036f42a3e71a6577a899f46d075ea55e2704.tar.xz
nixpkgs-2bfe036f42a3e71a6577a899f46d075ea55e2704.tar.zst
nixpkgs-2bfe036f42a3e71a6577a899f46d075ea55e2704.zip
libexecinfo: fix CC/AR
Diffstat (limited to 'pkgs/development/libraries/libexecinfo')
-rw-r--r--pkgs/development/libraries/libexecinfo/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/libraries/libexecinfo/default.nix b/pkgs/development/libraries/libexecinfo/default.nix
index 14d5f7f45df..a61d51aa6b7 100644
--- a/pkgs/development/libraries/libexecinfo/default.nix
+++ b/pkgs/development/libraries/libexecinfo/default.nix
@@ -27,6 +27,8 @@ stdenv.mkDerivation rec {
     })
   ];
 
+  makeFlags = [ "CC:=$(CC)" "AR:=$(AR)" ];
+
   patchFlags = "-p0";
 
   installPhase = ''
@@ -36,7 +38,7 @@ stdenv.mkDerivation rec {
   '';
 
   meta = with stdenv.lib; {
-    description = "Library for inspecting program's backtrace";
+    description = "Quick-n-dirty BSD licensed clone of the GNU libc backtrace facility";
     license = licenses.bsd2;
     homepage = https://www.freshports.org/devel/libexecinfo;
     maintainers = with maintainers; [ dtzWill ];