torrent/shell.nix
2024-01-13 13:01:54 +03:00

32 lines
623 B
Nix

let
nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-23.11";
pkgs = import nixpkgs { config = {}; overlays = []; };
in
pkgs.mkShell {
packages = with pkgs; [
git
nushell
mc
jq
# vscode-with-extensions
deluge
libtorrent-rasterbar
python311Packages.libtorrent-rasterbar
python311Full
python311Packages.ipython
python311Packages.ipdb
python311Packages.rq
# rustc
# dumptorrent
# udpt
# buildtorrent
];
# shellHook = ''
# echo "Nix shell environment is ready."
# hero_shell.sh
# '';
}