my new youtube and minecraft block script
This commit is contained in:
11
scripts/yt-block/app.nix
Normal file
11
scripts/yt-block/app.nix
Normal file
@@ -0,0 +1,11 @@
|
||||
{ pkgs
|
||||
, ...
|
||||
}: let
|
||||
python = pkgs.python3.withPackages (ps: with ps; [pkgs.python311Pacakges.cryptography]);
|
||||
python_script = pkgs.writeText (builtins.readFile ./main.py);
|
||||
in pkgs.writeShellApplication {
|
||||
name = "yt-block";
|
||||
text = ''
|
||||
${python}/bin/python ${python_script}
|
||||
'';
|
||||
}
|
||||
Reference in New Issue
Block a user