Skip to content

Commit

Permalink
feishin: fix warning in desktop file & add forgotten inherit meta
Browse files Browse the repository at this point in the history
```
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
```
  • Loading branch information
Artturin committed Oct 10, 2023
1 parent e3c7352 commit 1c7b43d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pkgs/applications/audio/feishin/darwin.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down
4 changes: 2 additions & 2 deletions pkgs/applications/audio/feishin/linux.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down

0 comments on commit 1c7b43d

Please sign in to comment.