2024-01-13 13:41:26 +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
|
|
|
|
nushellFull
|
|
|
|
mc
|
|
|
|
jq
|
|
|
|
# libtorrent-rasterbar
|
|
|
|
# python311Packages.libtorrent-rasterbar
|
|
|
|
python311Full
|
|
|
|
python311Packages.ipython
|
|
|
|
python311Packages.ipdb
|
|
|
|
python311Packages.rq
|
|
|
|
rsync
|
|
|
|
rustc
|
|
|
|
go
|
|
|
|
duf
|
|
|
|
gdu
|
2024-01-13 14:34:53 +00:00
|
|
|
boehmgc
|
2024-01-13 15:56:37 +00:00
|
|
|
libb2
|
|
|
|
openssl_3_1
|
|
|
|
libgcc
|
|
|
|
gcc
|
|
|
|
|
|
|
|
# ustream-ssl-mbedtls //doesn't install
|
|
|
|
# mbedtls
|
|
|
|
# mbedtls_2
|
|
|
|
|
2024-01-13 13:41:26 +00:00
|
|
|
|
|
|
|
];
|
|
|
|
|
|
|
|
# BIN_MC = "${pkgs.mc}/bin";
|
|
|
|
|
|
|
|
shellHook = ''
|
|
|
|
cd $BASE
|
|
|
|
git status
|
|
|
|
echo $BASE
|
|
|
|
$BASE/hero_shell.sh
|
|
|
|
'';
|
|
|
|
}
|
|
|
|
|