snipaste: add desktop entries

This commit is contained in:
panda2134 2024-11-16 14:32:30 -06:00 committed by GitHub
parent 6306bb79b8
commit f56bbed24b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3,17 +3,26 @@
lib,
fetchurl,
}:
appimageTools.wrapType2 rec {
let
pname = "snipaste";
version = "2.10.2";
src = fetchurl {
url = "https://download.snipaste.com/archives/Snipaste-${version}-x86_64.AppImage";
hash = "sha256-u9e2d9ZpHDbDIsFkseOdJX2Kspn9TkhFfZxbeielDA8=";
};
contents = appimageTools.extract { inherit pname version src; };
in
appimageTools.wrapType2 {
inherit pname version src;
passthru.updateScript = ./update.sh;
extraInstallCommands = ''
install -d $out/share/{applications,icons}
cp ${contents}/usr/share/applications/*.desktop -t $out/share/applications/
cp -r ${contents}/usr/share/icons/* -t $out/share/icons/
substituteInPlace $out/share/applications/*.desktop --replace-warn 'Exec=Snipaste' 'Exec=${pname}'
'';
meta = {
description = "Screenshot tools";
homepage = "https://www.snipaste.com/";