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
60 lines
1.1 KiB
Nix
60 lines
1.1 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
python3Packages,
|
|
fetchFromGitHub,
|
|
pkg-config,
|
|
meson,
|
|
ninja,
|
|
appstream-glib,
|
|
desktop-file-utils,
|
|
wrapGAppsHook3,
|
|
gobject-introspection,
|
|
}:
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "mopidy-argos";
|
|
version = "1.16.1";
|
|
pyproject = false; # Built with meson
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "orontee";
|
|
repo = "argos";
|
|
tag = "v${version}";
|
|
hash = "sha256-29P8cacYE07fMmSElAzVHC2+hwhyjuplcJjKikHPCwA=";
|
|
};
|
|
postPatch = ''
|
|
patchShebangs build-aux/meson/postinstall.py
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
meson
|
|
ninja
|
|
appstream-glib
|
|
gobject-introspection
|
|
desktop-file-utils
|
|
wrapGAppsHook3
|
|
];
|
|
|
|
dependencies = with python3Packages; [
|
|
aiohttp
|
|
pycairo
|
|
pygobject3
|
|
pyxdg
|
|
zeroconf
|
|
];
|
|
|
|
dontWrapGApps = true;
|
|
preFixup = ''
|
|
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
|
|
'';
|
|
|
|
meta = {
|
|
homepage = "https://github.com/orontee/argos";
|
|
description = "Gtk front-end to control a Mopidy server";
|
|
license = lib.licenses.gpl3Plus;
|
|
maintainers = [ lib.maintainers.hufman ];
|
|
mainProgram = "argos";
|
|
};
|
|
}
|