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
102 lines
1.9 KiB
Nix
102 lines
1.9 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchurl,
|
|
dpkg,
|
|
autoPatchelfHook,
|
|
makeWrapper,
|
|
wrapGAppsHook3,
|
|
alsa-lib,
|
|
dbus,
|
|
fontconfig,
|
|
freetype,
|
|
glib,
|
|
gst_all_1,
|
|
libGL,
|
|
libinput,
|
|
libpulseaudio,
|
|
libsecret,
|
|
libtiff,
|
|
libxkbcommon,
|
|
libgbm,
|
|
openssl,
|
|
systemd,
|
|
xcb-util-cursor,
|
|
xorg,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "alfaview";
|
|
version = "9.23.2";
|
|
|
|
src = fetchurl {
|
|
url = "https://assets.alfaview.com/stable/linux/deb/${pname}_${version}.deb";
|
|
hash = "sha256-0EGjm/EYozGXDM/IvmopN04kzJfPM+6wjMpJesyW55U=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
dpkg
|
|
makeWrapper
|
|
autoPatchelfHook
|
|
wrapGAppsHook3
|
|
];
|
|
|
|
buildInputs = [
|
|
alsa-lib
|
|
dbus
|
|
fontconfig
|
|
freetype
|
|
glib
|
|
gst_all_1.gst-plugins-bad
|
|
gst_all_1.gst-plugins-good
|
|
gst_all_1.gst-plugins-base
|
|
libGL
|
|
libinput
|
|
libpulseaudio
|
|
libsecret
|
|
libtiff
|
|
libxkbcommon
|
|
libgbm
|
|
openssl
|
|
stdenv.cc.cc
|
|
systemd
|
|
xcb-util-cursor
|
|
xorg.libX11
|
|
xorg.xcbutilwm
|
|
xorg.xcbutilimage
|
|
xorg.xcbutilkeysyms
|
|
xorg.xcbutilrenderutil
|
|
];
|
|
|
|
libPath = lib.makeLibraryPath buildInputs;
|
|
|
|
dontBuild = true;
|
|
dontConfigure = true;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mv usr $out
|
|
mv opt $out
|
|
|
|
substituteInPlace $out/share/applications/alfaview.desktop \
|
|
--replace "/opt/alfaview" "$out/bin" \
|
|
--replace "/usr/share/pixmaps/alfaview_production.png" alfaview_production
|
|
|
|
makeWrapper $out/opt/alfaview/alfaview $out/bin/alfaview \
|
|
--prefix LD_LIBRARY_PATH : ${libPath}
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Video-conferencing application, specialized in virtual online meetings, seminars, training sessions and conferences";
|
|
homepage = "https://alfaview.com";
|
|
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
|
license = licenses.unfree;
|
|
maintainers = [ ];
|
|
mainProgram = "alfaview";
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
}
|