Skip to content

Commit

Permalink
beeper: init at 3.62.20
Browse files Browse the repository at this point in the history
  • Loading branch information
jshcmpbll committed Jul 10, 2023
1 parent 3c74875 commit 34d2f8b
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
23 changes: 23 additions & 0 deletions pkgs/applications/networking/instant-messengers/beeper/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{ lib, mkDerivation, fetchurl, appimageTools, imagemagick, ... }:
let
pname = "beeper";
version = "3.62.20";
src = fetchurl {
url = "${pname}-${version}.AppImage::https://download.beeper.com/linux/appImage/x64";
sha256 = "5389e24ff3cef9acc6f137d24d37e9ef319c865ef81fa3337d407f927f087e31";
};
in
appimageTools.wrapType2 rec {
inherit pname src;
name = pname;

extraPkgs = pkgs: (appimageTools.defaultFhsEnvArgs.multiPkgs pkgs);

meta = with lib; {
description = "Beeper is a universal chat app. With Beeper, you can send and receive messages to friends, family and colleagues on many different chat networks.";
homepage = "https://beeper.com";
license = licenses.unfreeRedistributable;
maintainers = with maintainers; [ jshcmpbll ];
platforms = [ "x86_64-linux" ];
};
}
4 changes: 3 additions & 1 deletion pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,9 @@ with pkgs;

banana-accounting = callPackage ../applications/office/banana-accounting { };

beebeep = libsForQt5.callPackage ../applications/office/beebeep {};
beebeep = libsForQt5.callPackage ../applications/office/beebeep { };

beeper = qt5.callPackage ../applications/networking/instant-messengers/beeper { };

bakelite = callPackage ../tools/backup/bakelite { };

Expand Down

0 comments on commit 34d2f8b

Please sign in to comment.