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 06:28:06 +00:00
{ buildGoModule, fetchFromGitLab, lib }:
buildGoModule rec {
pname = "gnss-share";
2023-08-22 21:23:49 +00:00
version = "0.7.2";
2023-02-15 06:28:06 +00:00
src = fetchFromGitLab {
owner = "postmarketOS";
repo = "gnss-share";
rev = version;
2023-08-22 21:23:49 +00:00
hash = "sha256-0osXA+t+trm41ekcDiJwq0IAB+6ibrlwP/c2JNAXRpU=";
2023-02-15 06:28:06 +00:00
};
2023-06-11 19:25:17 +00:00
vendorHash = "sha256-a5CZxh92MW3yP/ZhwGI9UWUT8hwJ0/zeTyPNC+c2R9U=";
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 ];
};
}