lol

Merge pull request #214118 from MGlolenstine/beebeep

authored by

Sandro and committed by
GitHub
c454f046 2093405c

+45
+43
pkgs/applications/office/beebeep/default.nix
··· 1 + { lib 2 + , mkDerivation 3 + , fetchzip 4 + , wrapQtAppsHook 5 + , autoPatchelfHook 6 + , qtbase 7 + , qtmultimedia 8 + , qtx11extras 9 + }: 10 + 11 + mkDerivation rec { 12 + pname = "beebeep"; 13 + version = "5.8.6"; 14 + 15 + src = fetchzip { 16 + url = "https://netix.dl.sourceforge.net/project/beebeep/Linux/beebeep-${version}-qt5-amd64.tar.gz"; 17 + sha256 = "sha256-YDgFRXFBM1tjLP99mHYJadgccHJYYPAZ1kqR+FngLKU="; 18 + }; 19 + 20 + nativeBuildInputs = [ 21 + wrapQtAppsHook 22 + autoPatchelfHook 23 + ]; 24 + 25 + buildInputs = [ 26 + qtbase 27 + qtmultimedia 28 + qtx11extras 29 + ]; 30 + 31 + installPhase = '' 32 + mkdir -p $out/bin 33 + cp * $out/bin 34 + ''; 35 + 36 + meta = with lib; { 37 + homepage = "https://www.beebeep.net/"; 38 + description = "BeeBEEP is the free office messenger that is indispensable in all those places where privacy and security are an essential requirement."; 39 + platforms = platforms.linux; 40 + license = licenses.gpl2Only; 41 + maintainers = with maintainers; [ mglolenstine ]; 42 + }; 43 + }
+2
pkgs/top-level/all-packages.nix
··· 316 316 317 317 banana-accounting = callPackage ../applications/office/banana-accounting { }; 318 318 319 + beebeep = libsForQt5.callPackage ../applications/office/beebeep {}; 320 + 319 321 bakelite = callPackage ../tools/backup/bakelite { }; 320 322 321 323 benthos = callPackage ../development/tools/benthos { };