Skip to content
This repository was archived by the owner on Dec 6, 2018. It is now read-only.

Commit 5322e8b

Browse files
committed
Quick fix of undefined references when using cpputest
1 parent a78dd4f commit 5322e8b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

nix/cpputest/default.nix

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
, autoconf
55
, automake
66
, libtool
7+
, gcc5
78
}:
89

910
stdenv.mkDerivation {
@@ -14,7 +15,7 @@ stdenv.mkDerivation {
1415
./configure --prefix=$out
1516
'';
1617

17-
buildInputs = [ autoconf automake libtool ];
18+
buildInputs = [ gcc5 autoconf automake libtool ];
1819

1920
src = fetchFromGitHub {
2021
owner = "cpputest";

0 commit comments

Comments
 (0)