nixpkgs/pkgs/applications/misc/parsec/bin.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

125 lines
2.4 KiB
Nix
Raw Normal View History

{ stdenvNoCC
, stdenv
2022-10-05 21:43:12 +00:00
, lib
, dpkg
, autoPatchelfHook
, makeWrapper
2022-10-05 21:43:12 +00:00
, fetchurl
, alsa-lib
, openssl
, udev
2022-10-05 21:43:12 +00:00
, libglvnd
, libX11
, libXcursor
, libXi
, libXrandr
, libXfixes
2022-10-05 21:43:12 +00:00
, libpulseaudio
, libva
2023-11-10 23:01:56 +00:00
, ffmpeg_5
, libpng
, libjpeg8
, curl
2023-03-21 17:11:37 +00:00
, vulkan-loader
, gnome
, zenity ? gnome.zenity
2022-10-05 21:43:12 +00:00
}:
stdenvNoCC.mkDerivation {
pname = "parsec-bin";
2023-12-08 17:29:53 +00:00
version = "150_91a";
2022-10-05 21:43:12 +00:00
src = fetchurl {
2023-12-08 17:29:53 +00:00
url = "https://web.archive.org/web/20231209190803if_/https://builds.parsec.app/package/parsec-linux.deb";
sha256 = "sha256-/qugI7k0NYpq7p9l9auD2Pp+SFoFZ9jAZswpreVfgO4=";
2022-10-05 21:43:12 +00:00
};
unpackPhase = ''
runHook preUnpack
dpkg-deb -x $src .
runHook postUnpack
'';
nativeBuildInputs = [ dpkg autoPatchelfHook makeWrapper ];
buildInputs = [
stdenv.cc.cc # libstdc++
libglvnd
libX11
];
runtimeDependenciesPath = lib.makeLibraryPath [
stdenv.cc.cc
libglvnd
openssl
udev
alsa-lib
libpulseaudio
libva
2023-11-10 23:01:56 +00:00
ffmpeg_5
libpng
libjpeg8
curl
2022-10-05 21:43:12 +00:00
libX11
libXcursor
libXi
libXrandr
libXfixes
2023-03-21 17:11:37 +00:00
vulkan-loader
];
binPath = lib.makeBinPath [
zenity
2022-10-05 21:43:12 +00:00
];
prepareParsec = ''
if [[ ! -e "$HOME/.parsec/appdata.json" ]]; then
mkdir -p "$HOME/.parsec"
cp --no-preserve=mode,ownership,timestamps ${placeholder "out"}/share/parsec/skel/* "$HOME/.parsec/"
fi
'';
installPhase = ''
runHook preInstall
mkdir $out
mv usr/* $out
wrapProgram $out/bin/parsecd \
2023-03-21 17:11:37 +00:00
--prefix PATH : "$binPath" \
2022-10-05 21:43:12 +00:00
--prefix LD_LIBRARY_PATH : "$runtimeDependenciesPath" \
--run "$prepareParsec"
substituteInPlace $out/share/applications/parsecd.desktop \
--replace "/usr/bin/parsecd" "parsecd" \
--replace "/usr/share/icons" "${placeholder "out"}/share/icons"
2022-10-05 21:43:12 +00:00
runHook postInstall
'';
# Only the main binary needs to be patched, the wrapper script handles
# everything else. The libraries in `share/parsec/skel` would otherwise
# contain dangling references when copied out of the nix store.
dontAutoPatchelf = true;
fixupPhase = ''
runHook preFixup
autoPatchelf $out/bin
runHook postFixup
'';
2022-10-05 21:43:12 +00:00
meta = with lib; {
2023-10-28 21:32:13 +00:00
homepage = "https://parsec.app/";
2023-01-24 21:09:06 +00:00
changelog = "https://parsec.app/changelog";
2022-10-05 21:43:12 +00:00
description = "Remote streaming service client";
license = licenses.unfree;
maintainers = with maintainers; [ arcnmx pabloaul ];
2022-10-05 21:43:12 +00:00
platforms = platforms.linux;
mainProgram = "parsecd";
};
}