Last active
April 2, 2025 03:42
-
-
Save fufexan/2e7020d05ff940c255d74d5c5e712815 to your computer and use it in GitHub Desktop.
C/C++ dev environment in Nix, using Clang
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
description = "C/C++ environment"; | |
inputs = { | |
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; | |
utils.url = "github:numtide/flake-utils"; | |
}; | |
outputs = { self, nixpkgs, utils, ... }@inputs: | |
utils.lib.eachDefaultSystem ( | |
system: | |
let | |
p = import nixpkgs { inherit system; }; | |
llvm = p.llvmPackages_latest; | |
# simple script which replaces the functionality of make | |
# it works with <math.h> and includes debugging symbols by default | |
# it will be updated as per needs | |
# arguments: outfile | |
# basic usage example: mk main [flags] | |
mymake = p.writeShellScriptBin "mk" '' | |
if [ -f "$1.c" ]; then | |
i="$1.c" | |
c=$CC | |
else | |
i="$1.cpp" | |
c=$CXX | |
fi | |
o=$1 | |
shift | |
$c -ggdb $i -o $o -lm -Wall $@ | |
''; | |
in | |
{ | |
devShell = p.mkShell.override { stdenv = p.clangStdenv; } rec { | |
packages = with p; [ | |
# builder | |
gnumake | |
cmake | |
bear | |
# debugger | |
llvm.lldb | |
gdb | |
# fix headers not found | |
clang-tools | |
# LSP and compiler | |
llvm.libstdcxxClang | |
# other tools | |
cppcheck | |
llvm.libllvm | |
valgrind | |
mymake | |
# stdlib for cpp | |
llvm.libcxx | |
# libs | |
glm | |
SDL2 | |
SDL2_gfx | |
]; | |
name = "C"; | |
}; | |
} | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
nixfmt exists...