quiet: init at 2.3.2 (#254839)

authored by Arne Keller and committed by GitHub c76e6f01 0aeb618c

+25
+25
pkgs/by-name/qu/quiet/package.nix
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchurl, 5 + appimageTools, 6 + }: 7 + 8 + appimageTools.wrapType2 rec { 9 + pname = "quiet"; 10 + version = "2.3.2"; 11 + 12 + src = fetchurl { 13 + url = "https://github.com/TryQuiet/quiet/releases/download/@quiet/desktop@${version}/Quiet-${version}.AppImage"; 14 + hash = "sha256-ByCreCltJzyQGy4M+l69xVE4H74nkjRYZLZ5aL7Hb7g="; 15 + }; 16 + 17 + meta = { 18 + description = "Private, p2p alternative to Slack and Discord built on Tor & IPFS"; 19 + homepage = "https://github.com/TryQuiet/quiet"; 20 + changelog = "https://github.com/TryQuiet/quiet/releases/tag/@quiet/desktop@${version}"; 21 + license = lib.licenses.gpl3Only; 22 + maintainers = with lib.maintainers; [ kashw2 ]; 23 + platforms = [ "x86_64-linux" ]; 24 + }; 25 + }