pkgs/figma-linux: add Figma Desktop package
Some checks failed
CI / check (push) Has been cancelled
CI / list-packages (push) Has been cancelled

This commit is contained in:
암냥 2026-09-10 02:05:04 +09:00
commit 8ec0ec33cc
3 changed files with 49 additions and 1 deletions

View file

@ -0,0 +1,45 @@
{
appimageTools,
fetchurl,
lib,
}:
let
pname = "figma-linux";
version = "126.5.6";
src = fetchurl {
url = "https://github.com/IliyaBrook/figma-linux/releases/download/${version}/figma-desktop-${version}-amd64.AppImage";
hash = "sha256-SLn4y+NVCcBDZrGqIpmpIEQavY7xngt5JMI8yG1g6/0=";
};
appimageContents = appimageTools.extract { inherit pname version src; };
in
appimageTools.wrapType2 {
inherit pname version src;
extraInstallCommands = ''
install -Dm444 ${appimageContents}/usr/share/applications/io.github.nickvdp.figma-desktop-linux.desktop \
-t $out/share/applications
substituteInPlace $out/share/applications/io.github.nickvdp.figma-desktop-linux.desktop \
--replace-fail 'Exec=AppRun' 'Exec=${pname}'
install -Dm444 ${appimageContents}/io.github.nickvdp.figma-desktop-linux.png \
$out/share/icons/hicolor/256x256/apps/io.github.nickvdp.figma-desktop-linux.png
'';
extraPkgs = pkgs: with pkgs; [
libappindicator-gtk3
libnotify
libsecret
];
meta = {
description = "Figma Desktop for Linux";
homepage = "https://github.com/IliyaBrook/figma-linux";
license = lib.licenses.unfree;
mainProgram = "figma-linux";
platforms = [ "x86_64-linux" ];
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
};
}