mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
27 lines
967 B
Nix
27 lines
967 B
Nix
{ buildGoModule, fetchFromGitLab, lib }:
|
|
buildGoModule rec {
|
|
pname = "gnss-share";
|
|
version = "0.6";
|
|
src = fetchFromGitLab {
|
|
owner = "postmarketOS";
|
|
repo = "gnss-share";
|
|
rev = version;
|
|
hash = "sha256-vVmQlhzRISMBcYZh/9GQmOGzDgTzu2jSyIiEWdXPqOQ=";
|
|
};
|
|
vendorHash = "sha256-hS/xSxZSMHP+qlvpJYV6EvXtWx9ESamJ8lOf926CqOw=";
|
|
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 ];
|
|
};
|
|
}
|