Skip to content

Commit

Permalink
reduce to minimal pkgs
Browse files Browse the repository at this point in the history
  • Loading branch information
Lederstrumpf committed Nov 15, 2024
1 parent fdb432d commit 1f91638
Showing 1 changed file with 10 additions and 18 deletions.
28 changes: 10 additions & 18 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -22,25 +22,17 @@
# Override stdenv in order to change compiler:
# stdenv = pkgs.clangStdenv;
} {
packages = with pkgs;
[
clang-tools
oldpkgs.cmake
codespell
conan
cppcheck
doxygen
gtest
lcov
libseccomp
ncurses.dev
packages = with pkgs; [
clang-tools
oldpkgs.cmake
libseccomp
ncurses.dev

# Rust tools
rustup
cargo
rust-analyzer

] ++ (if system == "aarch64-darwin" then [ ] else [ gdb ]);
# Rust tools
rustup
cargo
rust-analyzer
];

shellHook = ''
export RUSTUP_HOME="$PWD/.rustup"
Expand Down

0 comments on commit 1f91638

Please sign in to comment.