-
-
Notifications
You must be signed in to change notification settings - Fork 14.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
It's worth noting that if they ever decide to add tray icons to the program, it will most likely suffer the same fate as cinny-desktop, where it will not be supported (see #357482)
- Loading branch information
1 parent
1e839b4
commit 451a85c
Showing
1 changed file
with
109 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
{ | ||
lib, | ||
stdenvNoCC, | ||
fetchFromGitHub, | ||
nix-update-script, | ||
|
||
pnpm_9, | ||
nodejs, | ||
|
||
rustPlatform, | ||
cargo-tauri, | ||
wrapGAppsHook4, | ||
pkg-config, | ||
glib-networking, | ||
webkitgtk_4_1, | ||
openssl, | ||
}: | ||
let | ||
pnpm = pnpm_9; | ||
pname = "fedistar"; | ||
version = "1.11.0"; | ||
src = fetchFromGitHub { | ||
owner = "h3poteto"; | ||
repo = "fedistar"; | ||
tag = "v${version}"; | ||
hash = "sha256-x7PljFqxC3Zht3ZEAZTA6/BClZ0g7VH2HpQLGKqQ8qo="; | ||
}; | ||
fedistar-frontend = stdenvNoCC.mkDerivation (finalAttrs: { | ||
pname = "fedistar-frontend"; | ||
inherit version src; | ||
pnpmDeps = pnpm.fetchDeps { | ||
inherit pname version src; | ||
hash = "sha256-2KTbTUfzXc/f/SlvHyRmP2RpSP6c9cWeCbvmQFQYwFY="; | ||
}; | ||
nativeBuildInputs = [ | ||
pnpm.configHook | ||
pnpm | ||
nodejs | ||
]; | ||
|
||
buildPhase = '' | ||
runHook preBuild | ||
pnpm run build | ||
runHook postBuild | ||
''; | ||
|
||
installPhase = '' | ||
runHook preInstall | ||
mkdir -p $out | ||
cp -r out/* $out/ | ||
runHook postInstall | ||
''; | ||
}); | ||
|
||
in | ||
rustPlatform.buildRustPackage { | ||
inherit | ||
pname | ||
version | ||
src | ||
fedistar-frontend | ||
; | ||
sourceRoot = "${src.name}/src-tauri"; | ||
|
||
cargoHash = "sha256-Nsb0UTYSGbMbgtOzo7I3X16Qv61ZeohksrwbB0Xr1Xw="; | ||
postPatch = '' | ||
substituteInPlace ./tauri.conf.json \ | ||
--replace-fail '"frontendDist": "../out",' '"frontendDist": "${fedistar-frontend}",' \ | ||
--replace-fail '"beforeBuildCommand": "pnpm build",' '"beforeBuildCommand": "",' | ||
''; | ||
|
||
nativeBuildInputs = [ | ||
cargo-tauri.hook | ||
|
||
pkg-config | ||
wrapGAppsHook4 | ||
]; | ||
|
||
buildInputs = | ||
[ openssl ] | ||
++ lib.optionals stdenvNoCC.hostPlatform.isLinux [ | ||
glib-networking | ||
webkitgtk_4_1 | ||
]; | ||
|
||
doCheck = false; # This version's tests do not pass | ||
|
||
# A fix for a problem with Tauri (tauri-apps/tauri#9304) | ||
preFixup = '' | ||
gappsWrapperArgs+=( | ||
--set-default WEBKIT_DISABLE_DMABUF_RENDERER 1 | ||
) | ||
''; | ||
|
||
passthru.updateScript = nix-update-script { | ||
extraArgs = [ | ||
"--subpackage" "fedistar-frontend" | ||
]; | ||
}; | ||
|
||
meta = { | ||
description = "Multi-column Fediverse client application for desktop"; | ||
homepage = "https://fedistar.net/"; | ||
mainProgram = "fedistar"; | ||
license = lib.licenses.gpl3Only; | ||
maintainers = with lib.maintainers; [ noodlez1232 ]; | ||
changelog = "https://github.com/h3poteto/fedistar/releases/tag/v${version}"; | ||
}; | ||
} |