feishin: fix warning in desktop file & add forgotten inherit meta

```
feishin.desktop> ...feishin.desktop: error: (will be fatal in the future): value item "Audio" in key "Categories" in group "Desktop Entry" requires another category to be present among the following categories: AudioVideo
```
This commit is contained in:
Artturin 2023-10-10 09:31:22 +03:00
parent e3c7352563
commit 1c7b43d942
2 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@
}:
stdenv.mkDerivation {
inherit pname version;
inherit pname version meta;
src = fetchurl {
url = "https://github.com/jeffvli/feishin/releases/download/v${version}/${appname}-${version}-mac-x64.zip";

View File

@ -25,13 +25,13 @@ let
comment = "Full-featured Subsonic/Jellyfin compatible desktop music player";
icon = "feishin";
exec = "feishin %u";
categories = [ "Audio" ];
categories = [ "Audio" "AudioVideo" ];
mimeTypes = [ "x-scheme-handler/feishin" ];
};
in
stdenv.mkDerivation {
inherit pname version;
inherit pname version meta;
src = fetchurl {
url = "https://github.com/jeffvli/feishin/releases/download/v${version}/${appname}-${version}-linux-x64.tar.xz";