about summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2022-06-17 20:30:43 +0200
committerJan Tojnar <jtojnar@gmail.com>2022-06-17 20:30:43 +0200
commit222bf23c35d6ea3f0a74a0c4eb8f4e55d733dce6 (patch)
treee6ee7e0fb4c3e3948ca1b81e1c3955571795167e /pkgs/applications/networking/instant-messengers
parentf6b0f94b9ed2ecbe3d8bc3c013c7999d6f001769 (diff)
parentc9507b994f39b69635ed43b918ebc75ac84e707b (diff)
Merge branch 'master' into staging-next
; Conflicts:
;	pkgs/top-level/python-packages.nix
Diffstat (limited to 'pkgs/applications/networking/instant-messengers')
-rw-r--r--pkgs/applications/networking/instant-messengers/ferdium/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/applications/networking/instant-messengers/ferdium/default.nix b/pkgs/applications/networking/instant-messengers/ferdium/default.nix
new file mode 100644
index 0000000000000..cbc87fc5ac92a
--- /dev/null
+++ b/pkgs/applications/networking/instant-messengers/ferdium/default.nix
@@ -0,0 +1,22 @@
+{ lib, mkFranzDerivation, fetchurl, xorg }:
+
+mkFranzDerivation rec {
+  pname = "ferdium";
+  name = "Ferdium";
+  version = "6.0.0-nightly.65";
+  src = fetchurl {
+    url = "https://github.com/ferdium/ferdium-app/releases/download/v${version}/ferdium_${version}_amd64.deb";
+    sha256 = "sha256-vmu74aLAKGbmRf9hkMUL5VOfi/Cbvdix9MzsZK1qW80=";
+  };
+
+  extraBuildInputs = [ xorg.libxshmfence ];
+
+  meta = with lib; {
+    description = "All your services in one place built by the community";
+    homepage = "https://ferdium.org/";
+    license = licenses.asl20;
+    maintainers = with maintainers; [ magnouvean ];
+    platforms = [ "x86_64-linux" ];
+    hydraPlatforms = [ ];
+  };
+}