about summary refs log tree commit diff
path: root/pkgs/applications/networking/soju/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/networking/soju/default.nix')
-rw-r--r--pkgs/applications/networking/soju/default.nix55
1 files changed, 0 insertions, 55 deletions
diff --git a/pkgs/applications/networking/soju/default.nix b/pkgs/applications/networking/soju/default.nix
deleted file mode 100644
index f8d6e3044314c..0000000000000
--- a/pkgs/applications/networking/soju/default.nix
+++ /dev/null
@@ -1,55 +0,0 @@
-{ lib
-, buildGoModule
-, fetchFromSourcehut
-, installShellFiles
-, scdoc
-}:
-
-buildGoModule rec {
-  pname = "soju";
-  version = "0.7.0";
-
-  src = fetchFromSourcehut {
-    owner = "~emersion";
-    repo = "soju";
-    rev = "v${version}";
-    hash = "sha256-nzaYa4h+UZcP6jqFHxVjgQ/F3q9aOeOPgVKFWBy6Fag=";
-  };
-
-  vendorHash = "sha256-JLght6bOrtc/VP3tfQboASa68VL2GGBTdK02DOC5EQk=";
-
-  nativeBuildInputs = [
-    installShellFiles
-    scdoc
-  ];
-
-  ldflags = [ "-s" "-w" ];
-
-  postBuild = ''
-    make doc/soju.1 doc/sojuctl.1
-  '';
-
-  postInstall = ''
-    installManPage doc/soju.1 doc/sojuctl.1
-  '';
-
-  preCheck = ''
-    # Disable a test that requires an additional service.
-    rm database/postgres_test.go
-  '';
-
-  meta = with lib; {
-    description = "A user-friendly IRC bouncer";
-    longDescription = ''
-      soju is a user-friendly IRC bouncer. soju connects to upstream IRC servers
-      on behalf of the user to provide extra functionality. soju supports many
-      features such as multiple users, numerous IRCv3 extensions, chat history
-      playback and detached channels. It is well-suited for both small and large
-      deployments.
-    '';
-    homepage = "https://soju.im";
-    changelog = "https://git.sr.ht/~emersion/soju/refs/${src.rev}";
-    license = licenses.agpl3Only;
-    maintainers = with maintainers; [ azahi malte-v ];
-  };
-}