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

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

27 lines
969 B
Nix
Raw Normal View History

2023-02-15 07:28:06 +01:00
{ buildGoModule, fetchFromGitLab, lib }:
buildGoModule rec {
pname = "gnss-share";
2023-06-11 21:25:17 +02:00
version = "0.7.1";
2023-02-15 07:28:06 +01:00
src = fetchFromGitLab {
owner = "postmarketOS";
repo = "gnss-share";
rev = version;
2023-06-11 21:25:17 +02:00
hash = "sha256-HlaT4TeVAyGN95cWUw1XgVNfGa+cUibh8nkBt/Eb7Yo=";
2023-02-15 07:28:06 +01:00
};
2023-06-11 21:25:17 +02:00
vendorHash = "sha256-a5CZxh92MW3yP/ZhwGI9UWUT8hwJ0/zeTyPNC+c2R9U=";
2023-02-15 07:28:06 +01: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 ];
};
}