37 lines
1.1 KiB
Nix
37 lines
1.1 KiB
Nix
{ lib, fetchurl, appimageTools, }:
|
|
|
|
let
|
|
pname = "youtube-music";
|
|
version = "1.17.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/th-ch/youtube-music/releases/download/v${version}/YouTube-Music-${version}.AppImage";
|
|
sha256 = "sha256-3QNmCek6UD0WNaqalIksYWLHGfMgetLRLi8mEM1J39I=";
|
|
};
|
|
|
|
appimageContents = appimageTools.extract { inherit pname version src; };
|
|
in
|
|
appimageTools.wrapType2 rec {
|
|
inherit pname version src;
|
|
|
|
extraInstallCommands = ''
|
|
mv $out/bin/{${pname}-${version},${pname}}
|
|
install -m 444 \
|
|
-D ${appimageContents}/youtube-music.desktop \
|
|
-t $out/share/applications
|
|
substituteInPlace \
|
|
$out/share/applications/youtube-music.desktop \
|
|
--replace 'Exec=AppRun' 'Exec=${pname}'
|
|
cp -r ${appimageContents}/usr/share/icons $out/share
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Electron wrapper around YouTube Music";
|
|
homepage = "https://th-ch.github.io/youtube-music/";
|
|
license = licenses.mit;
|
|
sourceProvenance = with sourceTypes; [ fromSource ];
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.aacebedo ];
|
|
};
|
|
}
|