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
63 lines
1.3 KiB
Nix
63 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
python3,
|
|
fetchFromGitea,
|
|
gobject-introspection,
|
|
libadwaita,
|
|
modemmanager,
|
|
wrapGAppsHook4,
|
|
nix-update-script,
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "satellite";
|
|
version = "0.9.1";
|
|
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitea {
|
|
domain = "codeberg.org";
|
|
owner = "tpikonen";
|
|
repo = "satellite";
|
|
tag = version;
|
|
hash = "sha256-E/OKdVB+JDP/01ydEgA/B6+GMiVYB4jlPI70TW8HBDU=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
gobject-introspection
|
|
wrapGAppsHook4
|
|
];
|
|
|
|
build-system = with python3.pkgs; [ setuptools ];
|
|
|
|
buildInputs = [
|
|
libadwaita
|
|
modemmanager
|
|
];
|
|
|
|
dependencies = with python3.pkgs; [
|
|
gpxpy
|
|
pygobject3
|
|
pynmea2
|
|
];
|
|
|
|
strictDeps = true;
|
|
|
|
passthru = {
|
|
updateScript = nix-update-script { };
|
|
};
|
|
|
|
meta = {
|
|
description = "Program for showing navigation satellite data";
|
|
longDescription = ''
|
|
Satellite is an adaptive GTK3 / libhandy application which displays global navigation satellite system (GNSS: GPS et al.) data obtained from ModemManager or gnss-share.
|
|
It can also save your position to a GPX-file.
|
|
'';
|
|
homepage = "https://codeberg.org/tpikonen/satellite";
|
|
license = lib.licenses.gpl3Only;
|
|
mainProgram = "satellite";
|
|
platforms = lib.platforms.linux;
|
|
maintainers = with lib.maintainers; [ Luflosi ];
|
|
};
|
|
}
|