From 923e00d5df2d7826ca7e352cf1273732c6698705 Mon Sep 17 00:00:00 2001 From: kashw2 Date: Wed, 13 Sep 2023 09:27:53 +1000 Subject: [PATCH] quiet: init at 2.3.2 --- pkgs/by-name/qu/quiet/package.nix | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 pkgs/by-name/qu/quiet/package.nix diff --git a/pkgs/by-name/qu/quiet/package.nix b/pkgs/by-name/qu/quiet/package.nix new file mode 100644 index 000000000000..af41cd06b73d --- /dev/null +++ b/pkgs/by-name/qu/quiet/package.nix @@ -0,0 +1,25 @@ +{ + lib, + stdenv, + fetchurl, + appimageTools, +}: + +appimageTools.wrapType2 rec { + pname = "quiet"; + version = "2.3.2"; + + src = fetchurl { + url = "https://github.com/TryQuiet/quiet/releases/download/@quiet/desktop@${version}/Quiet-${version}.AppImage"; + hash = "sha256-ByCreCltJzyQGy4M+l69xVE4H74nkjRYZLZ5aL7Hb7g="; + }; + + meta = { + description = "Private, p2p alternative to Slack and Discord built on Tor & IPFS"; + homepage = "https://github.com/TryQuiet/quiet"; + changelog = "https://github.com/TryQuiet/quiet/releases/tag/@quiet/desktop@${version}"; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ kashw2 ]; + platforms = [ "x86_64-linux" ]; + }; +}