dotnet: version 9 + added python *especially py2cfg for static analysis)
This commit is contained in:
@@ -4,7 +4,7 @@ let
|
|||||||
# Rolling updates, not deterministic.
|
# Rolling updates, not deterministic.
|
||||||
pkgs = import (fetchTarball "channel:nixpkgs-unstable") { };
|
pkgs = import (fetchTarball "channel:nixpkgs-unstable") { };
|
||||||
in pkgs.mkShell {
|
in pkgs.mkShell {
|
||||||
buildInputs = [ pkgs.dotnet-sdk ];
|
buildInputs = [ pkgs.dotnet-sdk_9 ];
|
||||||
shellHook = ''
|
shellHook = ''
|
||||||
exec zsh
|
exec zsh
|
||||||
'';
|
'';
|
||||||
|
|||||||
8
python.nix
Normal file
8
python.nix
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
let pkgs = import (fetchTarball "channel:nixpkgs-unstable") { };
|
||||||
|
in pkgs.mkShell {
|
||||||
|
packages =
|
||||||
|
[ (pkgs.python3.withPackages (python-pkgs: [ python-pkgs.py2cfg ])) ];
|
||||||
|
shellHook = ''
|
||||||
|
exec zsh
|
||||||
|
'';
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user