Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
51 lines
1.5 KiB
Nix
51 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
fetchurl,
|
|
appimageTools,
|
|
makeWrapper,
|
|
}:
|
|
|
|
let
|
|
pname = "plexamp";
|
|
version = "4.12.4";
|
|
|
|
src = fetchurl {
|
|
url = "https://plexamp.plex.tv/plexamp.plex.tv/desktop/Plexamp-${version}.AppImage";
|
|
name = "${pname}-${version}.AppImage";
|
|
hash = "sha512-LtYqC4pqX7hA+clUj9UVrp0YWebELULM23SsYlKnVDcYbZn8LJldiOOebS0+SU4RqK1a8Z3Kh4fPJ/HfijP0qw==";
|
|
};
|
|
|
|
appimageContents = appimageTools.extractType2 {
|
|
inherit pname version src;
|
|
};
|
|
in
|
|
appimageTools.wrapType2 {
|
|
inherit pname version src;
|
|
|
|
extraInstallCommands = ''
|
|
install -m 444 -D ${appimageContents}/plexamp.desktop $out/share/applications/plexamp.desktop
|
|
install -m 444 -D ${appimageContents}/plexamp.svg \
|
|
$out/share/icons/hicolor/scalable/apps/plexamp.svg
|
|
substituteInPlace $out/share/applications/${pname}.desktop \
|
|
--replace 'Exec=AppRun' 'Exec=${pname}'
|
|
source "${makeWrapper}/nix-support/setup-hook"
|
|
wrapProgram "$out/bin/plexamp" \
|
|
--add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform-hint=auto --enable-features=WaylandWindowDecorations --enable-wayland-ime=true}}"
|
|
'';
|
|
|
|
passthru.updateScript = ./update-plexamp.sh;
|
|
|
|
meta = with lib; {
|
|
description = "Beautiful Plex music player for audiophiles, curators, and hipsters";
|
|
homepage = "https://plexamp.com/";
|
|
changelog = "https://forums.plex.tv/t/plexamp-release-notes/221280/81";
|
|
license = licenses.unfree;
|
|
maintainers = with maintainers; [
|
|
killercup
|
|
redhawk
|
|
synthetica
|
|
];
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
}
|