Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
43 lines
873 B
Nix
43 lines
873 B
Nix
{
|
|
lib,
|
|
fetchzip,
|
|
autoPatchelfHook,
|
|
stdenv,
|
|
qt5,
|
|
}:
|
|
|
|
stdenv.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";
|
|
hash = "sha256-YDgFRXFBM1tjLP99mHYJadgccHJYYPAZ1kqR+FngLKU=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
qt5.wrapQtAppsHook
|
|
autoPatchelfHook
|
|
];
|
|
|
|
buildInputs = with qt5; [
|
|
qtbase
|
|
qtmultimedia
|
|
qtx11extras
|
|
];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp * $out/bin
|
|
'';
|
|
|
|
meta = {
|
|
homepage = "https://www.beebeep.net/";
|
|
description = "Free office messenger that is indispensable in all those places where privacy and security are an essential requirement";
|
|
mainProgram = "beebeep";
|
|
platforms = lib.platforms.linux;
|
|
license = lib.licenses.gpl2Only;
|
|
maintainers = [ ];
|
|
};
|
|
}
|