Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{
2 lib,
3 fetchzip,
4 autoPatchelfHook,
5 stdenv,
6 qt5,
7}:
8
9stdenv.mkDerivation rec {
10 pname = "beebeep";
11 version = "5.8.6";
12
13 src = fetchzip {
14 url = "https://netix.dl.sourceforge.net/project/beebeep/Linux/beebeep-${version}-qt5-amd64.tar.gz";
15 hash = "sha256-YDgFRXFBM1tjLP99mHYJadgccHJYYPAZ1kqR+FngLKU=";
16 };
17
18 nativeBuildInputs = [
19 qt5.wrapQtAppsHook
20 autoPatchelfHook
21 ];
22
23 buildInputs = with qt5; [
24 qtbase
25 qtmultimedia
26 qtx11extras
27 ];
28
29 installPhase = ''
30 mkdir -p $out/bin
31 cp * $out/bin
32 '';
33
34 meta = {
35 homepage = "https://www.beebeep.net/";
36 description = "Free office messenger that is indispensable in all those places where privacy and security are an essential requirement";
37 mainProgram = "beebeep";
38 platforms = lib.platforms.linux;
39 license = lib.licenses.gpl2Only;
40 maintainers = with lib.maintainers; [ mglolenstine ];
41 };
42}