tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
gpsd: enable on darwin
Nikolay Korotkiy
2 years ago
c022ff0b
cbb59a14
+4
-3
1 changed file
expand all
collapse all
unified
split
pkgs
servers
gpsd
default.nix
+4
-3
pkgs/servers/gpsd/default.nix
reviewed
···
10
10
, dbus
11
11
, libusb1
12
12
, ncurses
13
13
-
, pps-tools
13
13
+
, kppsSupport ? stdenv.isLinux, pps-tools
14
14
, python3Packages
15
15
16
16
# optional deps for GUI packages
···
53
53
dbus
54
54
libusb1
55
55
ncurses
56
56
+
python3Packages.python
57
57
+
] ++ lib.optionals kppsSupport [
56
58
pps-tools
57
57
-
python3Packages.python
58
59
] ++ lib.optionals guiSupport [
59
60
atk
60
61
dbus-glib
···
135
136
homepage = "https://gpsd.gitlab.io/gpsd/index.html";
136
137
changelog = "https://gitlab.com/gpsd/gpsd/-/blob/release-${version}/NEWS";
137
138
license = licenses.bsd2;
138
138
-
platforms = platforms.linux;
139
139
+
platforms = platforms.unix;
139
140
maintainers = with maintainers; [ bjornfor rasendubi ];
140
141
};
141
142
}