From 2bfe036f42a3e71a6577a899f46d075ea55e2704 Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Tue, 13 Feb 2018 11:05:49 -0600 Subject: [PATCH] libexecinfo: fix CC/AR --- pkgs/development/libraries/libexecinfo/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/libexecinfo/default.nix b/pkgs/development/libraries/libexecinfo/default.nix index 14d5f7f45dfd..a61d51aa6b72 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 ];