diff --git a/modules/krisp-patcher.nix b/modules/krisp-patcher.nix deleted file mode 100644 index e22680a..0000000 --- a/modules/krisp-patcher.nix +++ /dev/null @@ -1,29 +0,0 @@ -{ pkgs, ... }: -let - krisp-patcher = - pkgs.writers.writePython3Bin "krisp-patcher" - { - libraries = with pkgs.python3Packages; [ - capstone - pyelftools - ]; - flakeIgnore = [ - "E501" # line too long (82 > 79 characters) - "F403" # 'from module import *' used; unable to detect undefined names - "F405" # name may be undefined, or defined from star imports: module - ]; - } - ( - builtins.readFile ( - pkgs.fetchurl { - url = "https://raw.githubusercontent.com/sersorrel/sys/afc85e6b249e5cd86a7bcf001b544019091b928c/hm/discord/krisp-patcher.py"; - sha256 = "sha256-h8Jjd9ZQBjtO3xbnYuxUsDctGEMFUB5hzR/QOQ71j/E="; - } - ) - ); -in -{ - environment.systemPackages = [ - krisp-patcher - ]; -}