2023-10-14 07:09:57 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, stdenvNoCC
|
2023-10-22 00:56:37 +00:00
|
|
|
, gcc13Stdenv
|
2023-10-14 07:09:57 +00:00
|
|
|
, fetchFromGitHub
|
|
|
|
, substituteAll
|
|
|
|
, makeWrapper
|
|
|
|
, makeDesktopItem
|
|
|
|
, copyDesktopItems
|
|
|
|
, vencord
|
|
|
|
, electron
|
|
|
|
, pipewire
|
2023-10-22 00:56:37 +00:00
|
|
|
, libpulseaudio
|
2023-10-14 07:09:57 +00:00
|
|
|
, libicns
|
|
|
|
, jq
|
|
|
|
, moreutils
|
|
|
|
, nodePackages
|
|
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "vesktop";
|
2023-11-03 13:41:17 +00:00
|
|
|
version = "0.4.3";
|
2023-10-14 07:09:57 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Vencord";
|
|
|
|
repo = "Vesktop";
|
|
|
|
rev = "v${version}";
|
2023-11-03 13:41:17 +00:00
|
|
|
hash = "sha256-wGOyDGY0FpAVS5+MTiKrOpDyd13ng0RLGAENW5tXuR4=";
|
2023-10-14 07:09:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
pnpm-deps = stdenvNoCC.mkDerivation {
|
|
|
|
pname = "${pname}-pnpm-deps";
|
|
|
|
inherit src version patches ELECTRON_SKIP_BINARY_DOWNLOAD;
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
jq
|
|
|
|
moreutils
|
|
|
|
nodePackages.pnpm
|
|
|
|
];
|
|
|
|
|
|
|
|
# https://github.com/NixOS/nixpkgs/blob/763e59ffedb5c25774387bf99bc725df5df82d10/pkgs/applications/misc/pot/default.nix#L56
|
|
|
|
installPhase = ''
|
|
|
|
export HOME=$(mktemp -d)
|
|
|
|
|
|
|
|
pnpm config set store-dir $out
|
|
|
|
pnpm install --frozen-lockfile --ignore-script
|
|
|
|
|
|
|
|
rm -rf $out/v3/tmp
|
|
|
|
for f in $(find $out -name "*.json"); do
|
|
|
|
sed -i -E -e 's/"checkedAt":[0-9]+,//g' $f
|
|
|
|
jq --sort-keys . $f | sponge $f
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
|
|
|
dontFixup = true;
|
|
|
|
outputHashMode = "recursive";
|
2023-11-02 22:52:05 +00:00
|
|
|
outputHash = {
|
2023-11-03 13:41:17 +00:00
|
|
|
"aarch64-linux" = "sha256-OcAQbUi+wpBAumncYxP3qtTzjyxiHL69kbQefwaeBfg=";
|
|
|
|
"x86_64-linux" = "sha256-R5/2MSH/jXHrj2x1Ap2OoOFLBLQp3Sq91o01uW8hWOw=";
|
2023-11-02 22:52:05 +00:00
|
|
|
}.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
|
2023-10-14 07:09:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
copyDesktopItems
|
|
|
|
nodePackages.pnpm
|
|
|
|
nodePackages.nodejs
|
|
|
|
makeWrapper
|
|
|
|
];
|
|
|
|
|
|
|
|
patches = [
|
|
|
|
(substituteAll { inherit vencord; src = ./use_system_vencord.patch; })
|
|
|
|
];
|
|
|
|
|
|
|
|
ELECTRON_SKIP_BINARY_DOWNLOAD = 1;
|
|
|
|
|
|
|
|
preBuild = ''
|
|
|
|
export HOME=$(mktemp -d)
|
|
|
|
export STORE_PATH=$(mktemp -d)
|
|
|
|
|
|
|
|
cp -r ${pnpm-deps}/* "$STORE_PATH"
|
|
|
|
chmod -R +w "$STORE_PATH"
|
|
|
|
|
|
|
|
pnpm config set store-dir "$STORE_PATH"
|
|
|
|
pnpm install --offline --frozen-lockfile --ignore-script
|
|
|
|
patchShebangs node_modules/{*,.*}
|
|
|
|
'';
|
|
|
|
|
|
|
|
postBuild = ''
|
|
|
|
pnpm build
|
|
|
|
# using `pnpm exec` here apparently makes it ignore ELECTRON_SKIP_BINARY_DOWNLOAD
|
|
|
|
./node_modules/.bin/electron-builder \
|
|
|
|
--dir \
|
|
|
|
-c.electronDist=${electron}/libexec/electron \
|
|
|
|
-c.electronVersion=${electron.version}
|
|
|
|
'';
|
|
|
|
|
|
|
|
# this is consistent with other nixpkgs electron packages and upstream, as far as I am aware
|
|
|
|
# yes, upstream really packages it as "vesktop" but uses "vencorddesktop" file names
|
|
|
|
installPhase =
|
|
|
|
let
|
2023-10-22 00:56:37 +00:00
|
|
|
# this is mainly required for venmic
|
|
|
|
libPath = lib.makeLibraryPath [
|
|
|
|
libpulseaudio
|
|
|
|
pipewire
|
|
|
|
gcc13Stdenv.cc.cc.lib
|
|
|
|
];
|
2023-10-14 07:09:57 +00:00
|
|
|
in
|
|
|
|
''
|
|
|
|
runHook preInstall
|
|
|
|
|
|
|
|
mkdir -p $out/opt/Vesktop/resources
|
2023-11-02 22:52:05 +00:00
|
|
|
cp dist/linux-*unpacked/resources/app.asar $out/opt/Vesktop/resources
|
2023-10-14 07:09:57 +00:00
|
|
|
|
|
|
|
pushd build
|
|
|
|
${libicns}/bin/icns2png -x icon.icns
|
|
|
|
for file in icon_*x32.png; do
|
|
|
|
file_suffix=''${file//icon_}
|
|
|
|
install -Dm0644 $file $out/share/icons/hicolor/''${file_suffix//x32.png}/apps/vencorddesktop.png
|
|
|
|
done
|
|
|
|
|
|
|
|
makeWrapper ${electron}/bin/electron $out/bin/vencorddesktop \
|
|
|
|
--prefix LD_LIBRARY_PATH : ${libPath} \
|
|
|
|
--add-flags $out/opt/Vesktop/resources/app.asar \
|
|
|
|
--add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform-hint=auto --enable-features=WaylandWindowDecorations}}"
|
|
|
|
|
|
|
|
runHook postInstall
|
|
|
|
'';
|
|
|
|
|
|
|
|
desktopItems = [
|
|
|
|
(makeDesktopItem {
|
|
|
|
name = "vencorddesktop";
|
|
|
|
desktopName = "Vesktop";
|
|
|
|
exec = "vencorddesktop %U";
|
|
|
|
icon = "vencorddesktop";
|
|
|
|
startupWMClass = "VencordDesktop";
|
|
|
|
genericName = "Internet Messenger";
|
|
|
|
keywords = [ "discord" "vencord" "electron" "chat" ];
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "An alternate client for Discord with Vencord built-in";
|
|
|
|
homepage = "https://github.com/Vencord/Vesktop";
|
|
|
|
license = licenses.gpl3Only;
|
2023-11-03 13:42:34 +00:00
|
|
|
maintainers = with maintainers; [ getchoo Scrumplex vgskye pluiedev ];
|
2023-10-22 20:02:51 +00:00
|
|
|
platforms = [ "x86_64-linux" "aarch64-linux" ];
|
2023-10-14 07:09:57 +00:00
|
|
|
mainProgram = "vencorddesktop";
|
|
|
|
};
|
|
|
|
}
|