nixpkgs/pkgs/applications/networking/instant-messengers/ferdium/default.nix
2024-03-10 08:56:15 +01:00

36 lines
1.1 KiB
Nix

{ lib, mkFranzDerivation, fetchurl, xorg, nix-update-script, stdenv }:
let
arch = {
x86_64-linux = "amd64";
aarch64-linux = "arm64";
}."${stdenv.hostPlatform.system}" or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
hash = {
amd64-linux_hash = "sha256-ERAMFb69Y2kWiHIBn4ITEZJlx+YIpzqDye80vchOXl0=";
arm64-linux_hash = "sha256-B3zlhxJQaDoZ69nu/dXUbY2qxJ6FAp4CqU8+TLoNwsg=";
}."${arch}-linux_hash";
in mkFranzDerivation rec {
pname = "ferdium";
name = "Ferdium";
version = "6.7.1";
src = fetchurl {
url = "https://github.com/ferdium/ferdium-app/releases/download/v${version}/Ferdium-linux-${version}-${arch}.deb";
inherit hash;
};
extraBuildInputs = [ xorg.libxshmfence ];
passthru = {
updateScript = ./update.sh;
};
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" "aarch64-linux" ];
hydraPlatforms = [ ];
};
}