1 { lib, mkFranzDerivation, fetchurl, xorg, stdenv }:
5 x86_64-linux = "amd64";
6 aarch64-linux = "arm64";
7 }."${stdenv.hostPlatform.system}" or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
9 amd64-linux_hash = "sha256-5OW10sABNNYQNUgorM634j5oiBhJJby1ymH6UcmknRg=";
10 arm64-linux_hash = "sha256-zbO/8RU2SDV1h4gKdxKbvNFFSj6p3ybmPkpKsrup4No=";
11 }."${arch}-linux_hash";
13 mkFranzDerivation rec {
18 url = "https://github.com/ferdium/ferdium-app/releases/download/v${version}/Ferdium-linux-${version}-${arch}.deb";
22 extraBuildInputs = [ xorg.libxshmfence ];
25 updateScript = ./update.sh;
29 description = "All your services in one place built by the community";
30 homepage = "https://ferdium.org/";
31 license = licenses.asl20;
32 maintainers = with maintainers; [ magnouvean ];
33 platforms = [ "x86_64-linux" "aarch64-linux" ];