pinact: 1.0.0 -> 1.1.2 and set CGO_ENABLED=0 (#368078)
[NixPkgs.git] / pkgs / applications / networking / instant-messengers / franz / default.nix
blob58265e71823fd4ec86b7bca682c643a4ee24cc02
2   lib,
3   mkFranzDerivation,
4   fetchurl,
5 }:
7 mkFranzDerivation rec {
8   pname = "franz";
9   name = "Franz";
10   version = "5.10.0";
11   src = fetchurl {
12     url = "https://github.com/meetfranz/franz/releases/download/v${version}/franz_${version}_amd64.deb";
13     sha256 = "sha256-zQhZlxr7kyMWx6txDnV+ECBTzVEwnUaBsLWKJy3XYFg=";
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 = [ maintainers.davidtwco ];
21     platforms = [ "x86_64-linux" ];
22     hydraPlatforms = [ ];
23   };