mirror of
https://github.com/soywod/himalaya.git
synced 2024-11-24 20:10:23 +00:00
add .desktop file (#161)
This commit is contained in:
parent
27638be387
commit
edb2e181e7
2 changed files with 22 additions and 0 deletions
18
assets/himalaya.desktop
Normal file
18
assets/himalaya.desktop
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
[Desktop Entry]
|
||||||
|
Type=Application
|
||||||
|
Name=himalaya
|
||||||
|
DesktopName=Himalaya
|
||||||
|
GenericName=Mail Reader
|
||||||
|
Comment=CLI email client written in Rust
|
||||||
|
Comment[lo]=CLI ອີເມວໄຄລແອນທີ່ຂຽນດ້ວຍພາສາRust
|
||||||
|
Comment[th]=CLI อีเมล์ไคลแอนท์ที่เขียนด้วยภาษาRust
|
||||||
|
Terminal=true
|
||||||
|
Exec=himalaya %U
|
||||||
|
Categories=Application;Network
|
||||||
|
Keywords=email
|
||||||
|
MimeType=x-scheme-handler/mailto;message/rfc822
|
||||||
|
Actions=Compose
|
||||||
|
|
||||||
|
[Desktop Action Compose]
|
||||||
|
Name=Compose
|
||||||
|
Exec=himalaya write %U
|
|
@ -50,6 +50,10 @@
|
||||||
# configure non-Rust dependencies (see below) here.
|
# configure non-Rust dependencies (see below) here.
|
||||||
${name} = oldAttrs: {
|
${name} = oldAttrs: {
|
||||||
inherit buildInputs nativeBuildInputs;
|
inherit buildInputs nativeBuildInputs;
|
||||||
|
postInstall = ''
|
||||||
|
mkdir -p $out/share/applications/
|
||||||
|
cp assets/himalaya.desktop $out/share/applications/
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue