nixpkgs/pkgs/servers/gnss-share/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
1001 B
Nix
Raw Normal View History

2023-02-15 06:28:06 +00:00
{ buildGoModule, fetchFromGitLab, lib }:
buildGoModule rec {
pname = "gnss-share";
2024-03-25 13:36:55 +00:00
version = "0.8.1";
2023-02-15 06:28:06 +00:00
src = fetchFromGitLab {
owner = "postmarketOS";
repo = "gnss-share";
rev = version;
2024-03-25 13:36:55 +00:00
hash = "sha256-4X1oiQWn2oZPw/14hNyZ0a6FEwoykotBisY6lk6lj2k=";
2023-02-15 06:28:06 +00:00
};
2024-03-13 12:19:39 +00:00
vendorHash = "sha256-dmE6hfKUqEr7BMNi/HMUOk4jDB0dPXEMkWQyWj6XpY4=";
2023-02-15 06:28:06 +00:00
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 ];
2023-11-23 21:09:35 +00:00
mainProgram = "gnss-share";
2023-02-15 06:28:06 +00:00
};
}