Skip to content

Commit

Permalink
quiet: init at 1.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kashw2 committed Dec 16, 2024
1 parent 4d5b774 commit 7dcc2bf
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions pkgs/by-name/qu/quiet/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
lib,
stdenv,
fetchurl,
appimageTools,
}:

appimageTools.wrapType2 rec {
pname = "quiet";
version = "1.9.0";

src = fetchurl {
url = "https://github.com/TryQuiet/quiet/releases/download/quiet@${version}/Quiet-${version}.AppImage";
hash = "sha256-2rrm8ejuDR1yjj5qpmKLYMniuirTQEtMTd0pUGkgEhU=";
};

meta = {
description = "Private, p2p alternative to Slack and Discord built on Tor & IPFS";
homepage = "https://github.com/TryQuiet/quiet";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ kashw2 ];
platforms = lib.platforms.linux;
};
}

0 comments on commit 7dcc2bf

Please sign in to comment.