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