···1+{ buildGoModule, fetchFromGitLab, lib }:
2+buildGoModule rec {
3+ pname = "gnss-share";
4+ version = "0.6";
5+ src = fetchFromGitLab {
6+ owner = "postmarketOS";
7+ repo = "gnss-share";
8+ rev = version;
9+ hash = "sha256-vVmQlhzRISMBcYZh/9GQmOGzDgTzu2jSyIiEWdXPqOQ=";
10+ };
11+ vendorHash = "sha256-hS/xSxZSMHP+qlvpJYV6EvXtWx9ESamJ8lOf926CqOw=";
12+ meta = with lib; {
13+ description = "share GNSS data between multiple clients";
14+ longDescription = ''
15+ gnss-share is an app that facilitates sharing GNSS location data with multiple
16+ clients, while providing a way to perform device-specific setup beforehand. For
17+ some devices, it can also manage loading and storing A-GPS data.
18+19+ This is meant to replace things like gpsd, and gps-share, and work together
20+ with geoclue* or other clients that support fetching NMEA location data over
21+ sockets.
22+ '';
23+ license = licenses.gpl3;
24+ maintainers = with maintainers; [ balsoft ];
25+ };
26+}