557c643ee6
remove unnecessary newlines Co-authored-by: Sandro <sandro.jaeckel@gmail.com> add version information to bin Co-authored-by: Sandro <sandro.jaeckel@gmail.com> remove name
30 lines
1 KiB
Nix
30 lines
1 KiB
Nix
{ appimageTools, lib, fetchurl }:
|
|
|
|
appimageTools.wrapType2 rec {
|
|
pname = "cider";
|
|
version = "1.3.1308";
|
|
|
|
src = fetchurl {
|
|
url = "https://1308-429851205-gh.circle-artifacts.com/0/%7E/Cider/dist/artifacts/Cider-${version}.AppImage";
|
|
sha256 = "1lbyvn1c8155p039qfzx7jwad7km073phkmrzjm0w3ahdpwz3wgi";
|
|
};
|
|
|
|
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" ];
|
|
};
|
|
}
|