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
32 lines
1008 B
Nix
32 lines
1008 B
Nix
{
|
|
buildGoModule,
|
|
fetchFromGitLab,
|
|
lib,
|
|
}:
|
|
buildGoModule rec {
|
|
pname = "gnss-share";
|
|
version = "0.8.1";
|
|
src = fetchFromGitLab {
|
|
owner = "postmarketOS";
|
|
repo = "gnss-share";
|
|
rev = version;
|
|
hash = "sha256-4X1oiQWn2oZPw/14hNyZ0a6FEwoykotBisY6lk6lj2k=";
|
|
};
|
|
vendorHash = "sha256-dmE6hfKUqEr7BMNi/HMUOk4jDB0dPXEMkWQyWj6XpY4=";
|
|
meta = with lib; {
|
|
description = "Share GNSS data between multiple clients";
|
|
longDescription = ''
|
|
gnss-share is an app that facilitates sharing GNSS location data with multiple
|
|
clients, while providing a way to perform device-specific setup beforehand. For
|
|
some devices, it can also manage loading and storing A-GPS data.
|
|
|
|
This is meant to replace things like gpsd, and gps-share, and work together
|
|
with geoclue* or other clients that support fetching NMEA location data over
|
|
sockets.
|
|
'';
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ balsoft ];
|
|
mainProgram = "gnss-share";
|
|
};
|
|
}
|