28 lines
435 B
Nix
28 lines
435 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
haskell.compiler.ghcHEAD
|
|
dotnet-sdk_9
|
|
netcoredbg
|
|
|
|
cmake
|
|
catch2_3
|
|
gnumake
|
|
|
|
jupyter
|
|
# Do not forget to update the version in the jupyter kernel when updating
|
|
(python314.withPackages (
|
|
python-pkgs: with python-pkgs; [
|
|
matplotlib
|
|
ipykernel
|
|
]
|
|
))
|
|
|
|
javaPackages.compiler.openjdk25
|
|
];
|
|
}
|