nixpkgs/pkgs/applications/networking/instant-messengers/ferdium/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
672 B
Nix
Raw Normal View History

{ lib, mkFranzDerivation, fetchurl, xorg }:
mkFranzDerivation rec {
pname = "ferdium";
name = "Ferdium";
2022-11-10 08:43:17 +01:00
version = "6.2.0";
src = fetchurl {
2022-07-27 00:21:08 +02:00
url = "https://github.com/ferdium/ferdium-app/releases/download/v${version}/Ferdium-linux-${version}-amd64.deb";
2022-11-10 08:43:17 +01:00
sha256 = "sha256-lb3dvEaKgOnT5+YAJcYmro71soqkT/jpTjE0YMVMRUA=";
};
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 = [ ];
};
}