libexecinfo: fix CC/AR

+3 -1
+3 -1
pkgs/development/libraries/libexecinfo/default.nix
··· 27 27 }) 28 28 ]; 29 29 30 + makeFlags = [ "CC:=$(CC)" "AR:=$(AR)" ]; 31 + 30 32 patchFlags = "-p0"; 31 33 32 34 installPhase = '' ··· 36 38 ''; 37 39 38 40 meta = with stdenv.lib; { 39 - description = "Library for inspecting program's backtrace"; 41 + description = "Quick-n-dirty BSD licensed clone of the GNU libc backtrace facility"; 40 42 license = licenses.bsd2; 41 43 homepage = https://www.freshports.org/devel/libexecinfo; 42 44 maintainers = with maintainers; [ dtzWill ];