2022-03-14 03:38:02 +00:00
|
|
|
{ appimageTools, lib, fetchurl }:
|
|
|
|
|
|
|
|
appimageTools.wrapType2 rec {
|
|
|
|
pname = "cider";
|
2022-11-28 11:03:18 +00:00
|
|
|
version = "1.6.0";
|
2022-03-14 03:38:02 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2022-09-21 13:07:39 +00:00
|
|
|
url = "https://github.com/ciderapp/cider-releases/releases/download/v${version}/Cider-${version}.AppImage";
|
2022-11-28 11:03:18 +00:00
|
|
|
sha256 = "sha256-fbeUl+vQpEdP17m3koblKv9z4CRpLNYtVQf7bs8ZP1M=";
|
2022-03-14 03:38:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
extraInstallCommands =
|
|
|
|
let contents = appimageTools.extract { inherit pname version src; };
|
|
|
|
in ''
|
|
|
|
mv $out/bin/${pname}-${version} $out/bin/${pname}
|
|
|
|
|
|
|
|
install -m 444 -D ${contents}/${pname}.desktop -t $out/share/applications
|
|
|
|
substituteInPlace $out/share/applications/${pname}.desktop \
|
|
|
|
--replace 'Exec=AppRun' 'Exec=${pname}'
|
|
|
|
cp -r ${contents}/usr/share/icons $out/share
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "A new look into listening and enjoying Apple Music in style and performance.";
|
|
|
|
homepage = "https://github.com/ciderapp/Cider";
|
|
|
|
license = licenses.agpl3;
|
|
|
|
maintainers = [ maintainers.cigrainger ];
|
|
|
|
platforms = [ "x86_64-linux" ];
|
|
|
|
};
|
|
|
|
}
|