mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
41 lines
1.4 KiB
Nix
41 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
fetchurl,
|
|
appimageTools,
|
|
makeWrapper,
|
|
}:
|
|
|
|
let
|
|
pname = "muffon";
|
|
version = "2.0.3";
|
|
src = fetchurl {
|
|
url = "https://github.com/staniel359/muffon/releases/download/v${version}/muffon-${version}-linux-x86_64.AppImage";
|
|
hash = "sha256-2eLe/xvdWcOcUSE0D+pMOcOYCfFVEyKO13LiaJiZgX0=";
|
|
};
|
|
appimageContents = appimageTools.extractType2 { inherit pname src version; };
|
|
in
|
|
appimageTools.wrapType2 {
|
|
inherit pname src version;
|
|
|
|
extraInstallCommands = ''
|
|
source "${makeWrapper}/nix-support/setup-hook"
|
|
wrapProgram $out/bin/muffon \
|
|
--add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform-hint=auto --enable-features=WaylandWindowDecorations}}"
|
|
install -m 444 -D ${appimageContents}/muffon.desktop -t $out/share/applications
|
|
substituteInPlace $out/share/applications/muffon.desktop \
|
|
--replace-fail 'Exec=AppRun' 'Exec=muffon'
|
|
install -m 444 -D ${appimageContents}/muffon.png \
|
|
$out/share/icons/hicolor/512x512/apps/muffon.png
|
|
'';
|
|
|
|
meta = {
|
|
description = "Advanced multi-source music streaming client";
|
|
homepage = "https://muffon.netlify.app/";
|
|
changelog = "https://github.com/staniel359/muffon/releases/tag/v${version}";
|
|
license = lib.licenses.agpl3Only;
|
|
maintainers = with lib.maintainers; [ octodi ];
|
|
mainProgram = "muffon";
|
|
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
}
|