shells/development/default.nix

29 lines
501 B
Nix

with import <nixpkgs> { };
gcc11Stdenv.mkDerivation rec {
#gccStdenv.mkDerivation rec {
#clang16Stdenv.mkDerivation rec {
name = "devel";
nativeBuildInputs = with pkgs; [
git
ninja
git-lfs
jdk19
jetbrains.clion
jetbrains.pycharm-community
jetbrains.idea-community
scala_3
moreutils
hotspot
cmakeWithGui
gnumake
ccache
cudatoolkit_11
git
python3
linuxPackages.perf
] ;
shellHook = ''export CXXFLAGS="-march=native -O3"'';
}