3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/networking/instant-messengers/franz/default.nix

20 lines
636 B
Nix
Raw Normal View History

2020-07-03 10:43:18 +01:00
{ stdenv, mkFranzDerivation, fetchurl }:
2016-10-03 14:26:16 +01:00
2020-07-03 10:43:18 +01:00
mkFranzDerivation rec {
2019-08-13 22:52:01 +01:00
pname = "franz";
2020-07-03 10:43:18 +01:00
name = "Franz";
2020-11-17 12:05:15 +00:00
version = "5.6.1";
2016-10-03 14:26:16 +01:00
src = fetchurl {
2019-01-11 22:17:46 +00:00
url = "https://github.com/meetfranz/franz/releases/download/v${version}/franz_${version}_amd64.deb";
2020-11-17 12:05:15 +00:00
sha256 = "1gn0n1hr6z2gsdnpxysyq6sm8y7cjr9jafhsam8ffw0bq74kph7p";
2016-10-03 14:26:16 +01:00
};
meta = with stdenv.lib; {
description = "A free messaging app that combines chat & messaging services into one application";
homepage = "https://meetfranz.com";
2016-10-03 14:26:16 +01:00
license = licenses.free;
maintainers = [ maintainers.davidtwco ];
2020-07-03 10:43:18 +01:00
platforms = [ "x86_64-linux" ];
hydraPlatforms = [ ];
2016-10-03 14:26:16 +01:00
};
}