tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
libexecinfo: fix CC/AR
Will Dietz
8 years ago
2bfe036f
7f3527d3
+3
-1
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
libexecinfo
default.nix
+3
-1
pkgs/development/libraries/libexecinfo/default.nix
···
27
27
})
28
28
];
29
29
30
30
+
makeFlags = [ "CC:=$(CC)" "AR:=$(AR)" ];
31
31
+
30
32
patchFlags = "-p0";
31
33
32
34
installPhase = ''
···
36
38
'';
37
39
38
40
meta = with stdenv.lib; {
39
39
-
description = "Library for inspecting program's backtrace";
41
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 ];