This commit is contained in:
2026-09-01 10:45:21 -04:00
commit ac32649783
51 changed files with 4837 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
{
fetchurl,
pkgs,
lib,
}:
rec {
icon = fetchurl {
url = "https://web.archive.org/web/20260310003857/https://static.canva.com/domain-assets/affinity/static/images/apple-touch-180x180-1.png";
sha256 = "sha256-KLT9loFiD2y8uNXNzc27DZ4A73yEs6Ntr4h3WULG5HM=";
};
iconPackage = pkgs.runCommand "affinity-v3-icons" { } ''
mkdir -p $out/share/icons/hicolor/256x256/apps
${lib.getExe pkgs.imagemagick} \
${icon} \
-resize 256x256 \
$out/share/icons/hicolor/256x256/apps/affinity-v3.png
'';
}