summaryrefslogtreecommitdiffstats
path: root/krebs/5pkgs/simple/Reaktor/default.nix
diff options
context:
space:
mode:
authorlassulus <lassulus@lassul.us>2021-09-14 19:10:16 +0200
committerlassulus <lassulus@lassul.us>2021-09-14 20:32:51 +0200
commite7d5d990837981496fd8883c85391132200a5319 (patch)
tree6fa8b03b3bfdff44cd48c4c70a542e4fddbb77c2 /krebs/5pkgs/simple/Reaktor/default.nix
parent04ba40838dc4d3b644bf8af2d4da7c0ea417e7c4 (diff)
rip Reaktor
Diffstat (limited to 'krebs/5pkgs/simple/Reaktor/default.nix')
-rw-r--r--krebs/5pkgs/simple/Reaktor/default.nix24
1 files changed, 0 insertions, 24 deletions
diff --git a/krebs/5pkgs/simple/Reaktor/default.nix b/krebs/5pkgs/simple/Reaktor/default.nix
deleted file mode 100644
index 1cc498a6..00000000
--- a/krebs/5pkgs/simple/Reaktor/default.nix
+++ /dev/null
@@ -1,24 +0,0 @@
-{ lib, pkgs, python3Packages, fetchFromGitHub, ... }:
-
-python3Packages.buildPythonPackage rec {
- name = "Reaktor-${version}";
- version = "0.7.1";
-
- doCheck = false;
-
- propagatedBuildInputs = with pkgs;[
- python3Packages.docopt
- python3Packages.requests
- ];
- src = fetchFromGitHub {
- owner = "krebs";
- repo = "Reaktor";
- rev = "v${version}";
- sha256 = "0cv5a4x73ls6sk8qj2qi6gqn31rv8kvdg13dsf3jv92xdfx6brjn";
- };
- meta = {
- homepage = http://krebsco.de/;
- description = "An IRC bot based on asynchat";
- license = lib.licenses.wtfpl;
- };
-}