Merge pull request #214118 from MGlolenstine/beebeep
This commit is contained in:
commit
c454f04652
2 changed files with 45 additions and 0 deletions
43
pkgs/applications/office/beebeep/default.nix
Normal file
43
pkgs/applications/office/beebeep/default.nix
Normal file
|
@ -0,0 +1,43 @@
|
||||||
|
{ lib
|
||||||
|
, mkDerivation
|
||||||
|
, fetchzip
|
||||||
|
, wrapQtAppsHook
|
||||||
|
, autoPatchelfHook
|
||||||
|
, qtbase
|
||||||
|
, qtmultimedia
|
||||||
|
, qtx11extras
|
||||||
|
}:
|
||||||
|
|
||||||
|
mkDerivation rec {
|
||||||
|
pname = "beebeep";
|
||||||
|
version = "5.8.6";
|
||||||
|
|
||||||
|
src = fetchzip {
|
||||||
|
url = "https://netix.dl.sourceforge.net/project/beebeep/Linux/beebeep-${version}-qt5-amd64.tar.gz";
|
||||||
|
sha256 = "sha256-YDgFRXFBM1tjLP99mHYJadgccHJYYPAZ1kqR+FngLKU=";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
wrapQtAppsHook
|
||||||
|
autoPatchelfHook
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
qtbase
|
||||||
|
qtmultimedia
|
||||||
|
qtx11extras
|
||||||
|
];
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p $out/bin
|
||||||
|
cp * $out/bin
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "https://www.beebeep.net/";
|
||||||
|
description = "BeeBEEP is the free office messenger that is indispensable in all those places where privacy and security are an essential requirement.";
|
||||||
|
platforms = platforms.linux;
|
||||||
|
license = licenses.gpl2Only;
|
||||||
|
maintainers = with maintainers; [ mglolenstine ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -316,6 +316,8 @@ with pkgs;
|
||||||
|
|
||||||
banana-accounting = callPackage ../applications/office/banana-accounting { };
|
banana-accounting = callPackage ../applications/office/banana-accounting { };
|
||||||
|
|
||||||
|
beebeep = libsForQt5.callPackage ../applications/office/beebeep {};
|
||||||
|
|
||||||
bakelite = callPackage ../tools/backup/bakelite { };
|
bakelite = callPackage ../tools/backup/bakelite { };
|
||||||
|
|
||||||
benthos = callPackage ../development/tools/benthos { };
|
benthos = callPackage ../development/tools/benthos { };
|
||||||
|
|
Loading…
Reference in a new issue