Skip to content

Commit 987ae45

Browse files
committed
fix if
1 parent f5a8eb3 commit 987ae45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/system-nixpkgs-map.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ in
2525
#
2626
# error: 'libcxxabi' was merged into 'libcxx'
2727
#
28-
"c++abi" = [ if (__tryEval libcxxabi).success then libcxxabi else libcxx ];
28+
"c++abi" = if (__tryEval libcxxabi).success then [ libcxxabi ] else [ libcxx ];
2929
system-cxx-std-lib = [];
3030
"stdc++" = gcclibs;
3131
"stdc++-6" = gcclibs;

0 commit comments

Comments
 (0)