csc-656-coding-project-2/flake.nix
2024-10-24 15:44:37 -07:00

37 lines
1017 B
Nix

{
description = "A Nix-flake-based development environment for C/CPP and Python";
inputs.nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0.1.*.tar.gz";
outputs = { self, nixpkgs }:
let
supportedSystems = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ];
forEachSupportedSystem = f: nixpkgs.lib.genAttrs supportedSystems (system: f {
pkgs = import nixpkgs { inherit system; };
});
in
{
devShells = forEachSupportedSystem ({ pkgs }: {
default = pkgs.mkShell {
venvDir = ".venv";
packages = with pkgs; [
clang-tools
cmake
codespell
conan
cppcheck
doxygen
gtest
lcov
vcpkg
vcpkg-tool
python311
] ++ (with pkgs.python311Packages; [
pip
venvShellHook
]) ++ (if system == "aarch64-darwin" then [ ] else [ gdb ]);
};
});
};
}