Merge pull request #252195 from sikmir/gpsd

gpsd: enable on darwin
This commit is contained in:
Nikolay Korotkiy 2023-08-30 01:18:36 +04:00 committed by GitHub
commit d293e5502c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,7 +10,7 @@
, dbus
, libusb1
, ncurses
, pps-tools
, kppsSupport ? stdenv.isLinux, pps-tools
, python3Packages
# optional deps for GUI packages
@ -53,8 +53,9 @@ stdenv.mkDerivation rec {
dbus
libusb1
ncurses
pps-tools
python3Packages.python
] ++ lib.optionals kppsSupport [
pps-tools
] ++ lib.optionals guiSupport [
atk
dbus-glib
@ -135,7 +136,7 @@ stdenv.mkDerivation rec {
homepage = "https://gpsd.gitlab.io/gpsd/index.html";
changelog = "https://gitlab.com/gpsd/gpsd/-/blob/release-${version}/NEWS";
license = licenses.bsd2;
platforms = platforms.linux;
platforms = platforms.unix;
maintainers = with maintainers; [ bjornfor rasendubi ];
};
}