torrent/shell.nix

33 lines
634 B
Nix
Raw Normal View History

2024-01-13 06:32:52 +00:00
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
2024-01-13 10:01:54 +00:00
# vscode-with-extensions
2024-01-13 06:32:52 +00:00
deluge
libtorrent-rasterbar
python311Packages.libtorrent-rasterbar
python311Full
python311Packages.ipython
python311Packages.ipdb
python311Packages.rq
2024-01-13 10:43:21 +00:00
rsync
2024-01-13 10:01:54 +00:00
# rustc
2024-01-13 06:32:52 +00:00
# dumptorrent
# udpt
# buildtorrent
];
2024-01-13 10:01:54 +00:00
# shellHook = ''
# echo "Nix shell environment is ready."
# hero_shell.sh
# '';
}