28 lines
686 B
Nix
28 lines
686 B
Nix
|
{ lib
|
||
|
, fetchurl
|
||
|
, appimageTools
|
||
|
}:
|
||
|
|
||
|
appimageTools.wrapType2 rec {
|
||
|
pname = "sonixd";
|
||
|
version = "0.15.0";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/jeffvli/sonixd/releases/download/v${version}/Sonixd-${version}-linux-x86_64.AppImage";
|
||
|
sha256 = "sha256-mZdM2wPJktitSCgIyOY/GwYPixPVTnYiOBVMQN8b7XU=";
|
||
|
};
|
||
|
|
||
|
extraInstallCommands = ''
|
||
|
mv $out/bin/sonixd-${version} $out/bin/sonixd
|
||
|
'';
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Full-featured Subsonic/Jellyfin compatible desktop music player";
|
||
|
homepage = "https://github.com/jeffvli/sonixd";
|
||
|
license = licenses.gpl3Only;
|
||
|
maintainers = with maintainers; [ onny ];
|
||
|
platforms = [ "x86_64-linux" ];
|
||
|
};
|
||
|
}
|
||
|
|