gnss-share: init at 0.6
This commit is contained in:
parent
e1ccff2798
commit
232006fbe6
2 changed files with 28 additions and 0 deletions
26
pkgs/servers/gnss-share/default.nix
Normal file
26
pkgs/servers/gnss-share/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{ 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 ];
|
||||
};
|
||||
}
|
|
@ -39153,4 +39153,6 @@ with pkgs;
|
|||
oversteer = callPackage ../applications/misc/oversteer { };
|
||||
|
||||
volantes-cursors = callPackage ../data/icons/volantes-cursors { };
|
||||
|
||||
gnss-share = callPackage ../servers/gnss-share { };
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue