1{
2 lib,
3 mkFranzDerivation,
4 fetchurl,
5}:
6
7mkFranzDerivation rec {
8 pname = "franz";
9 name = "Franz";
10 version = "5.11.0";
11 src = fetchurl {
12 url = "https://github.com/meetfranz/franz/releases/download/v${version}/franz_${version}_amd64.deb";
13 sha256 = "sha256-4+HeH9lY5/2fswSwzMPM1Idllj01zU7nmlLOMYfcSsU=";
14 };
15 meta = with lib; {
16 description = "Free messaging app that combines chat & messaging services into one application";
17 homepage = "https://meetfranz.com";
18 sourceProvenance = with sourceTypes; [ binaryNativeCode ];
19 license = licenses.free;
20 maintainers = [ ];
21 platforms = [ "x86_64-linux" ];
22 hydraPlatforms = [ ];
23 };
24}