about summary refs log tree commit diff
path: root/pkgs/servers/matrix-hebbot/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/servers/matrix-hebbot/default.nix')
-rw-r--r--pkgs/servers/matrix-hebbot/default.nix44
1 files changed, 0 insertions, 44 deletions
diff --git a/pkgs/servers/matrix-hebbot/default.nix b/pkgs/servers/matrix-hebbot/default.nix
deleted file mode 100644
index ca90304ed32f..000000000000
--- a/pkgs/servers/matrix-hebbot/default.nix
+++ /dev/null
@@ -1,44 +0,0 @@
-{ lib
-, fetchFromGitHub
-, stdenv
-, rustPlatform
-, pkg-config
-, cmake
-, openssl
-, autoconf
-, automake
-, Security
-}:
-
-rustPlatform.buildRustPackage rec {
-  pname = "hebbot";
-  version = "2.1";
-
-  src = fetchFromGitHub {
-    owner = "haecker-felix";
-    repo = "hebbot";
-    rev = "v${version}";
-    sha256 = "sha256-zcsoTWpNonkgJLTC8S9Nubnzdhj5ROL/UGNWUsLxLgs=";
-  };
-
-  cargoLock = {
-    lockFile = ./Cargo.lock;
-    outputHashes = {
-      "matrix-qrcode-0.1.0" = "sha256-g78Ql+r5NYNcnkoirH9E6AHagZgBCgxBfweaX1D0z0E=";
-    };
-  };
-
-  nativeBuildInputs = [ pkg-config cmake ] ++
-    lib.optionals stdenv.isDarwin [ autoconf automake ];
-
-  buildInputs = [ openssl ] ++ lib.optional stdenv.isDarwin Security;
-
-  meta = with lib; {
-    description = "Matrix bot which can generate \"This Week in X\" like blog posts ";
-    homepage = "https://github.com/haecker-felix/hebbot";
-    changelog = "https://github.com/haecker-felix/hebbot/releases/tag/v${version}";
-    license = with licenses; [ agpl3Only ];
-    mainProgram = "hebbot";
-    maintainers = with maintainers; [ a-kenji ];
-  };
-}